Add EVPN-VPWS to the availbable L2VPN Connection Types

This commit is contained in:
Craig Askings 2024-10-08 09:52:37 +10:00
parent ebd6c59934
commit 97bbaaeaee

View File

@ -219,6 +219,7 @@ class L2VPNTypeChoices(ChoiceSet):
TYPE_VXLAN_EVPN = 'vxlan-evpn' TYPE_VXLAN_EVPN = 'vxlan-evpn'
TYPE_MPLS_EVPN = 'mpls-evpn' TYPE_MPLS_EVPN = 'mpls-evpn'
TYPE_PBB_EVPN = 'pbb-evpn' TYPE_PBB_EVPN = 'pbb-evpn'
TYPE_EVPN_VPWS = 'evpn-vpws'
CHOICES = ( CHOICES = (
('VPLS', ( ('VPLS', (
@ -232,6 +233,7 @@ class L2VPNTypeChoices(ChoiceSet):
('L2VPN E-VPN', ( ('L2VPN E-VPN', (
(TYPE_MPLS_EVPN, 'MPLS EVPN'), (TYPE_MPLS_EVPN, 'MPLS EVPN'),
(TYPE_PBB_EVPN, 'PBB EVPN'), (TYPE_PBB_EVPN, 'PBB EVPN'),
(TYPE_EVPN_VPWS, 'EVPN VPWS')
)), )),
('E-Line', ( ('E-Line', (
(TYPE_EPL, 'EPL'), (TYPE_EPL, 'EPL'),