mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-16 04:02:52 -06:00
feat(dcim): Add 2.5 Gbps and 5 Gbps options to InterfaceSpeedChoices
Extend `InterfaceSpeedChoices` to include 2.5 Gbps and 5 Gbps values. This improves support for modern interface speeds and enhances API data validation.
This commit is contained in:
parent
0c04a8d301
commit
138b22d458
@ -1238,6 +1238,8 @@ class InterfaceSpeedChoices(ChoiceSet):
|
||||
(10000, '10 Mbps'),
|
||||
(100000, '100 Mbps'),
|
||||
(1000000, '1 Gbps'),
|
||||
(2500000, '2.5 Gbps'),
|
||||
(5000000, '5 Gbps'),
|
||||
(10000000, '10 Gbps'),
|
||||
(25000000, '25 Gbps'),
|
||||
(40000000, '40 Gbps'),
|
||||
|
Loading…
Reference in New Issue
Block a user