We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a92c20 commit 21962b3Copy full SHA for 21962b3
netbox/vpn/choices.py
@@ -23,15 +23,23 @@ class TunnelStatusChoices(ChoiceSet):
23
24
class TunnelEncapsulationChoices(ChoiceSet):
25
ENCAP_GRE = 'gre'
26
- ENCAP_IP_IP = 'ip-ip'
27
ENCAP_IPSEC_TRANSPORT = 'ipsec-transport'
28
ENCAP_IPSEC_TUNNEL = 'ipsec-tunnel'
+ ENCAP_IP_IP = 'ip-ip'
29
+ ENCAP_L2TP = 'l2tp'
30
+ ENCAP_OPENVPN = 'openvpn'
31
+ ENCAP_PPTP = 'pptp'
32
+ ENCAP_WIREGUARD = 'wireguard'
33
34
CHOICES = [
35
(ENCAP_IPSEC_TRANSPORT, _('IPsec - Transport')),
36
(ENCAP_IPSEC_TUNNEL, _('IPsec - Tunnel')),
37
(ENCAP_IP_IP, _('IP-in-IP')),
38
(ENCAP_GRE, _('GRE')),
39
+ (ENCAP_WIREGUARD, _('WireGuard')),
40
+ (ENCAP_OPENVPN, _('OpenVPN')),
41
+ (ENCAP_L2TP, _('L2TP')),
42
+ (ENCAP_PPTP, _('PPTP')),
43
]
44
45
0 commit comments