mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-20 19:19:22 -06:00
Merge pull request #9982 from DorianXGH/pon_if_types
Closes #8595: Added new PON interface types
This commit is contained in:
commit
6cf898fa13
@ -814,6 +814,14 @@ class InterfaceTypeChoices(ChoiceSet):
|
|||||||
# ATM/DSL
|
# ATM/DSL
|
||||||
TYPE_XDSL = 'xdsl'
|
TYPE_XDSL = 'xdsl'
|
||||||
|
|
||||||
|
# PON
|
||||||
|
TYPE_GPON = 'gpon'
|
||||||
|
TYPE_XG_PON = 'xg-pon'
|
||||||
|
TYPE_XGS_PON = 'xgs-pon'
|
||||||
|
TYPE_NG_PON2 = 'ng-pon2'
|
||||||
|
TYPE_EPON = 'epon'
|
||||||
|
TYPE_10G_EPON = '10g-epon'
|
||||||
|
|
||||||
# Stacking
|
# Stacking
|
||||||
TYPE_STACKWISE = 'cisco-stackwise'
|
TYPE_STACKWISE = 'cisco-stackwise'
|
||||||
TYPE_STACKWISE_PLUS = 'cisco-stackwise-plus'
|
TYPE_STACKWISE_PLUS = 'cisco-stackwise-plus'
|
||||||
@ -950,6 +958,17 @@ class InterfaceTypeChoices(ChoiceSet):
|
|||||||
(TYPE_XDSL, 'xDSL'),
|
(TYPE_XDSL, 'xDSL'),
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
|
(
|
||||||
|
'PON',
|
||||||
|
(
|
||||||
|
(TYPE_GPON, 'GPON (2.5 Gbps / 1.25 Gps)'),
|
||||||
|
(TYPE_XG_PON, 'XG-PON (10 Gbps / 2.5 Gbps)'),
|
||||||
|
(TYPE_XGS_PON, 'XGS-PON (10 Gbps)'),
|
||||||
|
(TYPE_NG_PON2, 'NG-PON2 (TWDM-PON) (4x10 Gbps)'),
|
||||||
|
(TYPE_EPON, 'EPON (1 Gbps)'),
|
||||||
|
(TYPE_10G_EPON, '10G-EPON (10 Gbps)'),
|
||||||
|
)
|
||||||
|
),
|
||||||
(
|
(
|
||||||
'Stacking',
|
'Stacking',
|
||||||
(
|
(
|
||||||
|
Loading…
Reference in New Issue
Block a user