blob: ae553c272dc8aee4fd00cb592e8c6e0338c19f81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
<?xml version="1.0"?>
<interfaceDefinition>
<node name="reset">
<properties>
<help>Reset a service</help>
</properties>
<children>
<node name="vpn">
<properties>
<help>Reset Virtual Private Network (VPN) information</help>
</properties>
<children>
<node name="remote-access">
<properties>
<help>Reset remote access VPN connections</help>
</properties>
<children>
<node name="all">
<properties>
<help>Terminate all user's current remote access VPN session(s)</help>
</properties>
<children>
<node name="protocol">
<properties>
<help>Terminate specified user's current remote access VPN session(s) with specified protocol</help>
</properties>
<children>
<leafNode name="l2tp">
<properties>
<help>Terminate all user's current remote access VPN session(s) with L2TP protocol</help>
</properties>
<command>sudo ${vyos_op_scripts_dir}/reset_vpn.py --username="all_users" --protocol="l2tp"</command>
</leafNode>
<leafNode name="pptp">
<properties>
<help>Terminate all user's current remote access VPN session(s) with PPTP protocol</help>
</properties>
<command>sudo ${vyos_op_scripts_dir}/reset_vpn.py --username="all_users" --protocol="pptp"</command>
</leafNode>
<leafNode name="sstp">
<properties>
<help>Terminate all user's current remote access VPN session(s) with SSTP protocol</help>
</properties>
<command>sudo ${vyos_op_scripts_dir}/reset_vpn.py --username="all_users" --protocol="sstp"</command>
</leafNode>
</children>
</node>
</children>
<command>sudo ${vyos_op_scripts_dir}/reset_vpn.py --username="all_users"</command>
</node>
<tagNode name="interface">
<properties>
<help>Terminate a remote access VPN interface</help>
</properties>
<command>sudo ${vyos_op_scripts_dir}/reset_vpn.py --interface="$5"</command>
</tagNode>
<tagNode name="user">
<properties>
<help>Terminate specified user's current remote access VPN session(s)</help>
</properties>
<children>
<node name="protocol">
<properties>
<help>Terminate specified user's current remote access VPN session(s) with specified protocol</help>
</properties>
<children>
<leafNode name="l2tp">
<properties>
<help>Terminate all user's current remote access VPN session(s) with L2TP protocol</help>
</properties>
<command>sudo ${vyos_op_scripts_dir}/reset_vpn.py --username="$5" --protocol="l2tp"</command>
</leafNode>
<leafNode name="pptp">
<properties>
<help>Terminate all user's current remote access VPN session(s) with PPTP protocol</help>
</properties>
<command>sudo ${vyos_op_scripts_dir}/reset_vpn.py --username="$5" --protocol="pptp"</command>
</leafNode>
<leafNode name="sstp">
<properties>
<help>Terminate all user's current remote access VPN session(s) with SSTP protocol</help>
</properties>
<command>sudo ${vyos_op_scripts_dir}/reset_vpn.py --username="$5" --protocol="sstp"</command>
</leafNode>
</children>
</node>
</children>
<command>sudo ${vyos_op_scripts_dir}/reset_vpn.py --username="$5"</command>
</tagNode>
</children>
</node>
</children>
</node>
</children>
</node>
</interfaceDefinition>
|