Sfoglia il codice sorgente

feat: add 200Gbps & 400Gbps interface speed options

Joel D. Tague 2 anni fa
parent
commit
892c10b1f0
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. 2 0
      netbox/dcim/choices.py

+ 2 - 0
netbox/dcim/choices.py

@@ -1141,6 +1141,8 @@ class InterfaceSpeedChoices(ChoiceSet):
         (25000000, '25 Gbps'),
         (40000000, '40 Gbps'),
         (100000000, '100 Gbps'),
+        (200000000, '200 Gbps'),
+        (400000000, '400 Gbps'),
     ]