Add SPB in L2VPN

This commit is contained in:
Mathias Guillemot 2025-01-29 16:36:41 +08:00 committed by GitHub
parent 5d1070796d
commit 0df87067fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -228,6 +228,7 @@ class L2VPNTypeChoices(ChoiceSet):
TYPE_MPLS_EVPN = 'mpls-evpn'
TYPE_PBB_EVPN = 'pbb-evpn'
TYPE_EVPN_VPWS = 'evpn-vpws'
TYPE_SPB = 'spb'
CHOICES = (
('VPLS', (
@ -255,6 +256,9 @@ class L2VPNTypeChoices(ChoiceSet):
(TYPE_EPTREE, _('Ethernet Private Tree')),
(TYPE_EVPTREE, _('Ethernet Virtual Private Tree')),
)),
('SPB', (
(TYPE_SPB, _('SPB')),
)),
)
P2P = (