blob: 5f2463d1acbf5822e3c7d959a53dce6117357507 (
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
|
<?xml version="1.0"?>
<interfaceDefinition>
<node name="generate">
<children>
<node name="wireguard">
<properties>
<help>Generate WireGuard client config QR code</help>
</properties>
<children>
<tagNode name="client-config">
<properties>
<help>Generate Client config QR code</help>
<completionHelp>
<list><client-name></list>
</completionHelp>
</properties>
<children>
<tagNode name="interface">
<properties>
<help>Local interface used for connection</help>
<completionHelp>
<script>${vyos_completion_dir}/list_interfaces --type wireguard</script>
</completionHelp>
</properties>
<children>
<tagNode name="server">
<properties>
<help>IP address/FQDN used for client connection</help>
<completionHelp>
<script>${vyos_completion_dir}/list_local_ips.sh --both</script>
<list><hostname></list>
</completionHelp>
</properties>
<command>sudo ${vyos_op_scripts_dir}/wireguard_client.py --name "$4" --interface "$6" --server "$8"</command>
<children>
<tagNode name="address">
<properties>
<help>IPv4/IPv6 address used by client</help>
<completionHelp>
<list><x.x.x.x> <h:h:h:h:h:h:h:h></list>
</completionHelp>
</properties>
<command>sudo ${vyos_op_scripts_dir}/wireguard_client.py --name "$4" --interface "$6" --server "$8" --address "${10}"</command>
<children>
<tagNode name="address">
<properties>
<help>IPv4/IPv6 address used by client</help>
<completionHelp>
<list><x.x.x.x> <h:h:h:h:h:h:h:h></list>
</completionHelp>
</properties>
<command>sudo ${vyos_op_scripts_dir}/wireguard_client.py --name "$4" --interface "$6" --server "$8" --address "${10}" --address "${12}"</command>
</tagNode>
</children>
</tagNode>
</children>
</tagNode>
</children>
</tagNode>
</children>
</tagNode>
</children>
</node>
</children>
</node>
</interfaceDefinition>
|