mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-20 10:16:42 -06:00
create 802.15.4 interface type
This commit is contained in:
parent
88abb6902d
commit
b7df06ae7f
@ -924,6 +924,7 @@ class InterfaceTypeChoices(ChoiceSet):
|
|||||||
TYPE_80211AY = 'ieee802.11ay'
|
TYPE_80211AY = 'ieee802.11ay'
|
||||||
TYPE_80211BE = 'ieee802.11be'
|
TYPE_80211BE = 'ieee802.11be'
|
||||||
TYPE_802151 = 'ieee802.15.1'
|
TYPE_802151 = 'ieee802.15.1'
|
||||||
|
TYPE_802154 = 'ieee802.15.4'
|
||||||
TYPE_OTHER_WIRELESS = 'other-wireless'
|
TYPE_OTHER_WIRELESS = 'other-wireless'
|
||||||
|
|
||||||
# Cellular
|
# Cellular
|
||||||
@ -1096,6 +1097,7 @@ class InterfaceTypeChoices(ChoiceSet):
|
|||||||
(TYPE_80211AY, 'IEEE 802.11ay'),
|
(TYPE_80211AY, 'IEEE 802.11ay'),
|
||||||
(TYPE_80211BE, 'IEEE 802.11be'),
|
(TYPE_80211BE, 'IEEE 802.11be'),
|
||||||
(TYPE_802151, 'IEEE 802.15.1 (Bluetooth)'),
|
(TYPE_802151, 'IEEE 802.15.1 (Bluetooth)'),
|
||||||
|
(TYPE_802154, 'IEEE 802.15.4 (LR-WPAN)'),
|
||||||
(TYPE_OTHER_WIRELESS, 'Other (Wireless)'),
|
(TYPE_OTHER_WIRELESS, 'Other (Wireless)'),
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
|
@ -51,6 +51,7 @@ WIRELESS_IFACE_TYPES = [
|
|||||||
InterfaceTypeChoices.TYPE_80211AY,
|
InterfaceTypeChoices.TYPE_80211AY,
|
||||||
InterfaceTypeChoices.TYPE_80211BE,
|
InterfaceTypeChoices.TYPE_80211BE,
|
||||||
InterfaceTypeChoices.TYPE_802151,
|
InterfaceTypeChoices.TYPE_802151,
|
||||||
|
InterfaceTypeChoices.TYPE_802154,
|
||||||
InterfaceTypeChoices.TYPE_OTHER_WIRELESS,
|
InterfaceTypeChoices.TYPE_OTHER_WIRELESS,
|
||||||
]
|
]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user