Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions netbox/vpn/choices.py
Original file line number Diff line number Diff line change
Expand Up @@ -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', (
Expand Down Expand Up @@ -255,6 +256,9 @@ class L2VPNTypeChoices(ChoiceSet):
(TYPE_EPTREE, _('Ethernet Private Tree')),
(TYPE_EVPTREE, _('Ethernet Virtual Private Tree')),
)),
('SPB', (
(TYPE_SPB, _('SPB')),
)),
)

P2P = (
Expand Down