mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Closes #9933: Add DOCSIS interface type
This commit is contained in:
@@ -814,6 +814,9 @@ class InterfaceTypeChoices(ChoiceSet):
|
||||
# ATM/DSL
|
||||
TYPE_XDSL = 'xdsl'
|
||||
|
||||
# Coaxial
|
||||
TYPE_DOCSIS = 'docsis'
|
||||
|
||||
# PON
|
||||
TYPE_GPON = 'gpon'
|
||||
TYPE_XG_PON = 'xg-pon'
|
||||
@@ -958,6 +961,12 @@ class InterfaceTypeChoices(ChoiceSet):
|
||||
(TYPE_XDSL, 'xDSL'),
|
||||
)
|
||||
),
|
||||
(
|
||||
'Coaxial',
|
||||
(
|
||||
(TYPE_DOCSIS, 'DOCSIS'),
|
||||
)
|
||||
),
|
||||
(
|
||||
'PON',
|
||||
(
|
||||
|
Reference in New Issue
Block a user