From 94c2e7582e1df592e32134b7e115777334984335 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Wed, 3 Jul 2024 08:28:12 -0400 Subject: [PATCH] Closes #16791: Add 200 & 400 Gbps selections for circuit termination port speed --- netbox/circuits/choices.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/netbox/circuits/choices.py b/netbox/circuits/choices.py index 5d0065edc..6648352a1 100644 --- a/netbox/circuits/choices.py +++ b/netbox/circuits/choices.py @@ -69,6 +69,8 @@ class CircuitTerminationPortSpeedChoices(ChoiceSet): (25000000, '25 Gbps'), (40000000, '40 Gbps'), (100000000, '100 Gbps'), + (200000000, '200 Gbps'), + (400000000, '400 Gbps'), (1544, 'T1 (1.544 Mbps)'), (2048, 'E1 (2.048 Mbps)'), ]