summaryrefslogtreecommitdiff
path: root/op-mode-definitions/wireguard.xml
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2018-08-18 08:24:23 +0200
committerGitHub <noreply@github.com>2018-08-18 08:24:23 +0200
commit9a204594dd0ada8d117d37c9ad5f0d4a59ff43fd (patch)
tree7e65fd74b218110844c831f75ac501e0c46e32c7 /op-mode-definitions/wireguard.xml
parent3acb6381bc2a56e70a58b3a19ae817473f8dd5f4 (diff)
parent14f37d3ecbab133b0259de540ae16bd065494dd7 (diff)
downloadvyos-1x-9a204594dd0ada8d117d37c9ad5f0d4a59ff43fd.tar.gz
vyos-1x-9a204594dd0ada8d117d37c9ad5f0d4a59ff43fd.zip
Merge pull request #32 from hagbard-01/current
T783,427
Diffstat (limited to 'op-mode-definitions/wireguard.xml')
-rw-r--r--op-mode-definitions/wireguard.xml42
1 files changed, 42 insertions, 0 deletions
diff --git a/op-mode-definitions/wireguard.xml b/op-mode-definitions/wireguard.xml
new file mode 100644
index 000000000..29fce33b6
--- /dev/null
+++ b/op-mode-definitions/wireguard.xml
@@ -0,0 +1,42 @@
+<?xml version="1.0"?>
+<!-- wireguard key management -->
+<interfaceDefinition>
+ <node name="generate">
+ <children>
+ <node name="wireguard">
+ <properties>
+ <help>wireguard key generation utility</help>
+ </properties>
+ <children>
+ <leafNode name="keypair">
+ <properties>
+ <help>generate a wireguard keypair</help>
+ </properties>
+ <command>${vyos_op_scripts_dir}/wireguard_key.py --genkey</command>
+ </leafNode>
+ </children>
+ </node>
+ </children>
+ </node>
+ <node name="show">
+ <children>
+ <node name="wireguard">
+ <children>
+ <leafNode name="pubkey">
+ <properties>
+ <help>show wireguard public key</help>
+ </properties>
+ <command>${vyos_op_scripts_dir}/wireguard_key.py --showpub</command>
+ </leafNode>
+ <leafNode name="privkey">
+ <properties>
+ <help>show wireguard private key</help>
+ </properties>
+ <command>${vyos_op_scripts_dir}/wireguard_key.py --showpriv</command>
+ </leafNode>
+ </children>
+ </node>
+ </children>
+ </node>
+</interfaceDefinition>
+