Skip to content

Commit 7c9a77b

Browse files
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 <[email protected]>
1 parent 81fe12a commit 7c9a77b

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

netbox/dcim/choices.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -886,6 +886,7 @@ class InterfaceTypeChoices(ChoiceSet):
886886
TYPE_80211AD = 'ieee802.11ad'
887887
TYPE_80211AX = 'ieee802.11ax'
888888
TYPE_80211AY = 'ieee802.11ay'
889+
TYPE_80211BE = 'ieee802.11be'
889890
TYPE_802151 = 'ieee802.15.1'
890891
TYPE_OTHER_WIRELESS = 'other-wireless'
891892

@@ -1057,6 +1058,7 @@ class InterfaceTypeChoices(ChoiceSet):
10571058
(TYPE_80211AD, 'IEEE 802.11ad'),
10581059
(TYPE_80211AX, 'IEEE 802.11ax'),
10591060
(TYPE_80211AY, 'IEEE 802.11ay'),
1061+
(TYPE_80211BE, 'IEEE 802.11be'),
10601062
(TYPE_802151, 'IEEE 802.15.1 (Bluetooth)'),
10611063
(TYPE_OTHER_WIRELESS, 'Other (Wireless)'),
10621064
)

netbox/dcim/constants.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
InterfaceTypeChoices.TYPE_80211AD,
5050
InterfaceTypeChoices.TYPE_80211AX,
5151
InterfaceTypeChoices.TYPE_80211AY,
52+
InterfaceTypeChoices.TYPE_80211BE,
5253
InterfaceTypeChoices.TYPE_802151,
5354
InterfaceTypeChoices.TYPE_OTHER_WIRELESS,
5455
]

0 commit comments

Comments
 (0)