Skip to content

Commit

Permalink
Closes #9933: Add DOCSIS interface type
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremystretch committed Aug 16, 2022
1 parent 6d328a8 commit 9e9e90f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/release-notes/version-3.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* [#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
* [#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

Expand Down
9 changes: 9 additions & 0 deletions netbox/dcim/choices.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -958,6 +961,12 @@ class InterfaceTypeChoices(ChoiceSet):
(TYPE_XDSL, 'xDSL'),
)
),
(
'Coaxial',
(
(TYPE_DOCSIS, 'DOCSIS'),
)
),
(
'PON',
(
Expand Down

0 comments on commit 9e9e90f

Please sign in to comment.