From 7c9a77b77f8f43391185a1da9a53e5b5ec1e19ee Mon Sep 17 00:00:00 2001 From: Matthew Mehrtens <12023414+mcmehrtens@users.noreply.github.com> Date: Mon, 12 Aug 2024 07:03:46 -0500 Subject: [PATCH] 17006 Add Wi-Fi 7 IEEE 802.11be (#17125) * Add .devcontainer to .gitignore * Closes #17006: Add Wi-Fi 7 IEEE 802.11be * Revert out-of-scope change --------- Co-authored-by: Jeremy Stretch --- netbox/dcim/choices.py | 2 ++ netbox/dcim/constants.py | 1 + 2 files changed, 3 insertions(+) diff --git a/netbox/dcim/choices.py b/netbox/dcim/choices.py index fe8d8a158f6..980c258c0b6 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 303fc234413..049be6117b9 100644 --- a/netbox/dcim/constants.py +++ b/netbox/dcim/constants.py @@ -49,6 +49,7 @@ InterfaceTypeChoices.TYPE_80211AD, InterfaceTypeChoices.TYPE_80211AX, InterfaceTypeChoices.TYPE_80211AY, + InterfaceTypeChoices.TYPE_80211BE, InterfaceTypeChoices.TYPE_802151, InterfaceTypeChoices.TYPE_OTHER_WIRELESS, ]