Skip to content

Commit e438ddb

Browse files
Adds 2.5 and 10g (netbox-community#16068)
* adds 2.5 and 10g netbox-community#15451 * Tweak constant names for consistency w/peers --------- Co-authored-by: Jeremy Stretch <[email protected]>
1 parent a953ff2 commit e438ddb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

netbox/dcim/choices.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -848,6 +848,8 @@ class InterfaceTypeChoices(ChoiceSet):
848848

849849
# Ethernet Backplane
850850
TYPE_1GE_KX = '1000base-kx'
851+
TYPE_2GE_KX = '2.5gbase-kx'
852+
TYPE_5GE_KR = '5gbase-kr'
851853
TYPE_10GE_KR = '10gbase-kr'
852854
TYPE_10GE_KX4 = '10gbase-kx4'
853855
TYPE_25GE_KR = '25gbase-kr'
@@ -1008,6 +1010,8 @@ class InterfaceTypeChoices(ChoiceSet):
10081010
_('Ethernet (backplane)'),
10091011
(
10101012
(TYPE_1GE_KX, '1000BASE-KX (1GE)'),
1013+
(TYPE_2GE_KX, '2.5GBASE-KX (2.5GE)'),
1014+
(TYPE_5GE_KR, '5GBASE-KR (5GE)'),
10111015
(TYPE_10GE_KR, '10GBASE-KR (10GE)'),
10121016
(TYPE_10GE_KX4, '10GBASE-KX4 (10GE)'),
10131017
(TYPE_25GE_KR, '25GBASE-KR (25GE)'),

0 commit comments

Comments
 (0)