diff --git a/netbox/dcim/choices.py b/netbox/dcim/choices.py index fe8d8a158..980c258c0 100644 --- a/netbox/dcim/choices.py +++ b/netbox/dcim/choices.py @@ -886,6 +886,7 @@ class InterfaceTypeChoices(ChoiceSet): TYPE_80211AD = 'ieee802.11ad' TYPE_80211AX = 'ieee802.11ax' TYPE_80211AY = 'ieee802.11ay' + TYPE_80211BE = 'ieee802.11be' TYPE_802151 = 'ieee802.15.1' TYPE_OTHER_WIRELESS = 'other-wireless' @@ -1057,6 +1058,7 @@ class InterfaceTypeChoices(ChoiceSet): (TYPE_80211AD, 'IEEE 802.11ad'), (TYPE_80211AX, 'IEEE 802.11ax'), (TYPE_80211AY, 'IEEE 802.11ay'), + (TYPE_80211BE, 'IEEE 802.11be'), (TYPE_802151, 'IEEE 802.15.1 (Bluetooth)'), (TYPE_OTHER_WIRELESS, 'Other (Wireless)'), ) diff --git a/netbox/dcim/constants.py b/netbox/dcim/constants.py index 303fc2344..049be6117 100644 --- a/netbox/dcim/constants.py +++ b/netbox/dcim/constants.py @@ -49,6 +49,7 @@ WIRELESS_IFACE_TYPES = [ InterfaceTypeChoices.TYPE_80211AD, InterfaceTypeChoices.TYPE_80211AX, InterfaceTypeChoices.TYPE_80211AY, + InterfaceTypeChoices.TYPE_80211BE, InterfaceTypeChoices.TYPE_802151, InterfaceTypeChoices.TYPE_OTHER_WIRELESS, ]