mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 09:51:22 -06:00
Closes #9933: Add DOCSIS interface type
This commit is contained in:
parent
6d328a82e9
commit
9e9e90f88b
@ -10,6 +10,7 @@
|
|||||||
* [#9505](https://github.com/netbox-community/netbox/issues/9505) - Display extra addressing details for IPv4 prefixes
|
* [#9505](https://github.com/netbox-community/netbox/issues/9505) - Display extra addressing details for IPv4 prefixes
|
||||||
* [#9625](https://github.com/netbox-community/netbox/issues/9625) - Add phone & email details to contacts panel
|
* [#9625](https://github.com/netbox-community/netbox/issues/9625) - Add phone & email details to contacts panel
|
||||||
* [#9857](https://github.com/netbox-community/netbox/issues/9857) - Add clear button to quick search fields
|
* [#9857](https://github.com/netbox-community/netbox/issues/9857) - Add clear button to quick search fields
|
||||||
|
* [#9933](https://github.com/netbox-community/netbox/issues/9933) - Add DOCSIS interface type
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
|
@ -814,6 +814,9 @@ class InterfaceTypeChoices(ChoiceSet):
|
|||||||
# ATM/DSL
|
# ATM/DSL
|
||||||
TYPE_XDSL = 'xdsl'
|
TYPE_XDSL = 'xdsl'
|
||||||
|
|
||||||
|
# Coaxial
|
||||||
|
TYPE_DOCSIS = 'docsis'
|
||||||
|
|
||||||
# PON
|
# PON
|
||||||
TYPE_GPON = 'gpon'
|
TYPE_GPON = 'gpon'
|
||||||
TYPE_XG_PON = 'xg-pon'
|
TYPE_XG_PON = 'xg-pon'
|
||||||
@ -958,6 +961,12 @@ class InterfaceTypeChoices(ChoiceSet):
|
|||||||
(TYPE_XDSL, 'xDSL'),
|
(TYPE_XDSL, 'xDSL'),
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
|
(
|
||||||
|
'Coaxial',
|
||||||
|
(
|
||||||
|
(TYPE_DOCSIS, 'DOCSIS'),
|
||||||
|
)
|
||||||
|
),
|
||||||
(
|
(
|
||||||
'PON',
|
'PON',
|
||||||
(
|
(
|
||||||
|
Loading…
Reference in New Issue
Block a user