diff options
author | hagbard <vyosdev@derith.de> | 2018-08-17 17:51:56 +0000 |
---|---|---|
committer | hagbard <vyosdev@derith.de> | 2018-08-17 17:51:56 +0000 |
commit | aa5f4da1a18eeec1dba9bed3c1d7896605ac51ee (patch) | |
tree | 64f458fe7f3c65e9ee37106075f021bd17c858f3 /op-mode-definitions/wireguard.xml | |
parent | 8cb56942e141f19af71f97d1093395326c99dbe5 (diff) | |
download | vyos-1x-aa5f4da1a18eeec1dba9bed3c1d7896605ac51ee.tar.gz vyos-1x-aa5f4da1a18eeec1dba9bed3c1d7896605ac51ee.zip |
change xml name for op mode, since it will support non key-management related commands in the future as well
Diffstat (limited to 'op-mode-definitions/wireguard.xml')
-rw-r--r-- | op-mode-definitions/wireguard.xml | 42 |
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> + |