summaryrefslogtreecommitdiff
path: root/op-mode-definitions
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-04-25 00:13:30 +0200
committerChristian Poessinger <christian@poessinger.com>2021-04-25 09:30:09 +0200
commitdaf377aca3511e8ad74854828f3aaa1dd99f0a91 (patch)
treefbefdd2eebc5f370540a9196bd7e4ac1861c3df9 /op-mode-definitions
parent92d62740a1dd84d27ed3006cdc8d2560673f6bca (diff)
downloadvyos-1x-daf377aca3511e8ad74854828f3aaa1dd99f0a91.tar.gz
vyos-1x-daf377aca3511e8ad74854828f3aaa1dd99f0a91.zip
wireguard: T1802: add client name to configuration
Diffstat (limited to 'op-mode-definitions')
-rw-r--r--op-mode-definitions/wireguard.xml.in42
1 files changed, 31 insertions, 11 deletions
diff --git a/op-mode-definitions/wireguard.xml.in b/op-mode-definitions/wireguard.xml.in
index 1e9801252..0df838b50 100644
--- a/op-mode-definitions/wireguard.xml.in
+++ b/op-mode-definitions/wireguard.xml.in
@@ -26,33 +26,53 @@
</properties>
<command>sudo ${vyos_op_scripts_dir}/wireguard.py --genkey --location "$4"</command>
</tagNode>
- <tagNode name="mobile-config">
+ <tagNode name="client-config">
<properties>
- <help>Generate QR code and movile configuration for Wireguard interface</help>
+ <help>Generate Client config QR code</help>
<completionHelp>
- <script>${vyos_completion_dir}/list_interfaces.py --type wireguard</script>
+ <list>&lt;client-name&gt;</list>
</completionHelp>
</properties>
<children>
- <tagNode name="server">
+ <tagNode name="interface">
<properties>
- <help>IP address or FQDN the client will connect to</help>
+ <help>Local interface used for connection</help>
<completionHelp>
- <script>${vyos_completion_dir}/list_local_ips.sh --both</script>
- <list>&lt;hostname&gt;</list>
+ <script>${vyos_completion_dir}/list_interfaces.py --type wireguard</script>
</completionHelp>
</properties>
- <command>sudo ${vyos_op_scripts_dir}/wireguard_client.py --interface "$4" --server "$6"</command>
<children>
- <tagNode name="address">
+ <tagNode name="server">
<properties>
- <help>IPv4/IPv6 address used on the client side</help>
+ <help>IP address/FQDN used for client connection</help>
<completionHelp>
<script>${vyos_completion_dir}/list_local_ips.sh --both</script>
<list>&lt;hostname&gt;</list>
</completionHelp>
</properties>
- <command>sudo ${vyos_op_scripts_dir}/wireguard_client.py --interface "$4" --server "$6" --address "$8"</command>
+ <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>&lt;x.x.x.x&gt; &lt;h:h:h:h:h:h:h:h&gt;</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>&lt;x.x.x.x&gt; &lt;h:h:h:h:h:h:h:h&gt;</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>