mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-22 20:12:00 -06:00
Closes #3842: Add 802.11ax interface type
This commit is contained in:
parent
302f87e108
commit
a4687be5e5
@ -1,5 +1,9 @@
|
||||
# v2.7.2 (FUTURE)
|
||||
|
||||
## Enhancements
|
||||
|
||||
* [#3842](https://github.com/netbox-community/netbox/issues/3842) - Add 802.11ax interface type
|
||||
|
||||
## Bug Fixes
|
||||
|
||||
* [#3951](https://github.com/netbox-community/netbox/issues/3951) - Fix exception in webhook worker due to missing constant
|
||||
|
@ -545,6 +545,7 @@ class InterfaceTypeChoices(ChoiceSet):
|
||||
TYPE_80211N = 'ieee802.11n'
|
||||
TYPE_80211AC = 'ieee802.11ac'
|
||||
TYPE_80211AD = 'ieee802.11ad'
|
||||
TYPE_80211AX = 'ieee802.11ax'
|
||||
|
||||
# Cellular
|
||||
TYPE_GSM = 'gsm'
|
||||
@ -650,6 +651,7 @@ class InterfaceTypeChoices(ChoiceSet):
|
||||
(TYPE_80211N, 'IEEE 802.11n'),
|
||||
(TYPE_80211AC, 'IEEE 802.11ac'),
|
||||
(TYPE_80211AD, 'IEEE 802.11ad'),
|
||||
(TYPE_80211AX, 'IEEE 802.11ax'),
|
||||
)
|
||||
),
|
||||
(
|
||||
|
Loading…
Reference in New Issue
Block a user