Skip to content

Commit 4b58678

Browse files
authored
feat(dcim): Add 2.5 Gbps and 5 Gbps options to InterfaceSpeedChoices (#19445)
Extend `InterfaceSpeedChoices` to include 2.5 Gbps and 5 Gbps values. This improves support for modern interface speeds and enhances API data validation.
1 parent d1303f4 commit 4b58678

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

netbox/dcim/choices.py

+2
Original file line numberDiff line numberDiff line change
@@ -1240,6 +1240,8 @@ class InterfaceSpeedChoices(ChoiceSet):
12401240
(10000, '10 Mbps'),
12411241
(100000, '100 Mbps'),
12421242
(1000000, '1 Gbps'),
1243+
(2500000, '2.5 Gbps'),
1244+
(5000000, '5 Gbps'),
12431245
(10000000, '10 Gbps'),
12441246
(25000000, '25 Gbps'),
12451247
(40000000, '40 Gbps'),

0 commit comments

Comments
 (0)