mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 01:41:22 -06:00
Add EVPN-VPWS to L2VPNTypeChoices (#17694)
* Add EVPN-VPWS to the availbable L2VPN Connection Types * Updated documentation to reference the new L2VPN type.
This commit is contained in:
parent
23e6534060
commit
2172ddde61
@ -28,6 +28,7 @@ The technology employed in forming and operating the L2VPN. Choices include:
|
||||
* VXLAN-EVPN
|
||||
* MPLS-EVPN
|
||||
* PBB-EVPN
|
||||
* EVPN-VPWS
|
||||
|
||||
!!! note
|
||||
Designating the type as VPWS, EPL, EP-LAN, EP-TREE will limit the L2VPN instance to two terminations.
|
||||
|
@ -219,6 +219,7 @@ class L2VPNTypeChoices(ChoiceSet):
|
||||
TYPE_VXLAN_EVPN = 'vxlan-evpn'
|
||||
TYPE_MPLS_EVPN = 'mpls-evpn'
|
||||
TYPE_PBB_EVPN = 'pbb-evpn'
|
||||
TYPE_EVPN_VPWS = 'evpn-vpws'
|
||||
|
||||
CHOICES = (
|
||||
('VPLS', (
|
||||
@ -232,6 +233,7 @@ class L2VPNTypeChoices(ChoiceSet):
|
||||
('L2VPN E-VPN', (
|
||||
(TYPE_MPLS_EVPN, 'MPLS EVPN'),
|
||||
(TYPE_PBB_EVPN, 'PBB EVPN'),
|
||||
(TYPE_EVPN_VPWS, 'EVPN VPWS')
|
||||
)),
|
||||
('E-Line', (
|
||||
(TYPE_EPL, 'EPL'),
|
||||
|
Loading…
Reference in New Issue
Block a user