From d1712c45bb83f1506d8eef5ec46bb54ebbefc320 Mon Sep 17 00:00:00 2001 From: Mathias Guillemot <84408567+Mathias-gt@users.noreply.github.com> Date: Tue, 25 Feb 2025 23:06:07 +0800 Subject: [PATCH] Closes: #18434 - Add SPB in L2VPN (#18523) * Add SPB in L2VPN * Change category as Other Co-authored-by: Daniel Sheppard --------- Co-authored-by: Daniel Sheppard --- netbox/vpn/choices.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/netbox/vpn/choices.py b/netbox/vpn/choices.py index 9847e1b97..7aea90232 100644 --- a/netbox/vpn/choices.py +++ b/netbox/vpn/choices.py @@ -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')), )), + ('Other', ( + (TYPE_SPB, _('SPB')), + )), ) P2P = (