mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-16 12:12:53 -06:00
Closes #2866: Add cellular interface types (GSM/CDMA/LTE)
This commit is contained in:
parent
57fecdbf17
commit
95dea1faaa
@ -4,6 +4,7 @@ v2.5.6 (FUTURE)
|
|||||||
|
|
||||||
* [#2839](https://github.com/digitalocean/netbox/issues/2839) - Add "110 punch" type for pass-through ports
|
* [#2839](https://github.com/digitalocean/netbox/issues/2839) - Add "110 punch" type for pass-through ports
|
||||||
* [#2854](https://github.com/digitalocean/netbox/issues/2854) - Enable bulk editing of pass-through ports
|
* [#2854](https://github.com/digitalocean/netbox/issues/2854) - Enable bulk editing of pass-through ports
|
||||||
|
* [#2866](https://github.com/digitalocean/netbox/issues/2866) - Add cellular interface types (GSM/CDMA/LTE)
|
||||||
|
|
||||||
## Bug Fixes
|
## Bug Fixes
|
||||||
|
|
||||||
|
@ -91,6 +91,10 @@ IFACE_FF_80211G = 2610
|
|||||||
IFACE_FF_80211N = 2620
|
IFACE_FF_80211N = 2620
|
||||||
IFACE_FF_80211AC = 2630
|
IFACE_FF_80211AC = 2630
|
||||||
IFACE_FF_80211AD = 2640
|
IFACE_FF_80211AD = 2640
|
||||||
|
# Cellular
|
||||||
|
IFACE_FF_GSM = 2810
|
||||||
|
IFACE_FF_CDMA = 2820
|
||||||
|
IFACE_FF_LTE = 2830
|
||||||
# SONET
|
# SONET
|
||||||
IFACE_FF_SONET_OC3 = 6100
|
IFACE_FF_SONET_OC3 = 6100
|
||||||
IFACE_FF_SONET_OC12 = 6200
|
IFACE_FF_SONET_OC12 = 6200
|
||||||
@ -174,6 +178,14 @@ IFACE_FF_CHOICES = [
|
|||||||
[IFACE_FF_80211AD, 'IEEE 802.11ad'],
|
[IFACE_FF_80211AD, 'IEEE 802.11ad'],
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
|
[
|
||||||
|
'Cellular',
|
||||||
|
[
|
||||||
|
[IFACE_FF_GSM, 'GSM'],
|
||||||
|
[IFACE_FF_CDMA, 'CDMA'],
|
||||||
|
[IFACE_FF_LTE, 'LTE'],
|
||||||
|
]
|
||||||
|
],
|
||||||
[
|
[
|
||||||
'SONET',
|
'SONET',
|
||||||
[
|
[
|
||||||
|
Loading…
Reference in New Issue
Block a user