adding 100 FastEthernet SFP base interface

solve #8464
This commit is contained in:
neope 2022-01-27 23:43:04 +01:00 committed by GitHub
parent 69eb6b11d0
commit 3c3aecb0d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -733,6 +733,7 @@ class InterfaceTypeChoices(ChoiceSet):
# Ethernet # Ethernet
TYPE_100ME_FIXED = '100base-tx' TYPE_100ME_FIXED = '100base-tx'
TYPE_100ME_SFP = '100base-x-sfp'
TYPE_1GE_FIXED = '1000base-t' TYPE_1GE_FIXED = '1000base-t'
TYPE_1GE_GBIC = '1000base-x-gbic' TYPE_1GE_GBIC = '1000base-x-gbic'
TYPE_1GE_SFP = '1000base-x-sfp' TYPE_1GE_SFP = '1000base-x-sfp'
@ -852,6 +853,7 @@ class InterfaceTypeChoices(ChoiceSet):
( (
'Ethernet (modular)', 'Ethernet (modular)',
( (
(TYPE_100ME_SFP, 'GBIC (100ME)'),
(TYPE_1GE_GBIC, 'GBIC (1GE)'), (TYPE_1GE_GBIC, 'GBIC (1GE)'),
(TYPE_1GE_SFP, 'SFP (1GE)'), (TYPE_1GE_SFP, 'SFP (1GE)'),
(TYPE_10GE_SFP_PLUS, 'SFP+ (10GE)'), (TYPE_10GE_SFP_PLUS, 'SFP+ (10GE)'),