diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-09-01 21:10:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-01 21:10:45 +0200 |
commit | b25d8e9787ee5243feb6b08098bbba958fe22d8c (patch) | |
tree | cf0821334cd982e6c025ff820edcbcb363871713 /op-mode-definitions/bandwidth-test.xml | |
parent | 308886a3fc28aa7772c14452185fb06531ba9dfd (diff) | |
parent | 76f498220c796a39a92ce3bed47c1cc5bac1a99d (diff) | |
download | vyos-1x-b25d8e9787ee5243feb6b08098bbba958fe22d8c.tar.gz vyos-1x-b25d8e9787ee5243feb6b08098bbba958fe22d8c.zip |
Merge pull request #119 from alkersan/T1621_misc_rewrites
[op-mode] T1621 rewrite misc commands to python/xml syntax
Diffstat (limited to 'op-mode-definitions/bandwidth-test.xml')
-rw-r--r-- | op-mode-definitions/bandwidth-test.xml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/op-mode-definitions/bandwidth-test.xml b/op-mode-definitions/bandwidth-test.xml new file mode 100644 index 000000000..d1e459b17 --- /dev/null +++ b/op-mode-definitions/bandwidth-test.xml @@ -0,0 +1,29 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="monitor"> + <children> + <node name="bandwidth-test"> + <properties> + <help>Initiate or wait for bandwidth test</help> + </properties> + <children> + <leafNode name="accept"> + <properties> + <help>Wait for bandwidth test connections (port TCP/5001)</help> + </properties> + <command>iperf -s</command> + </leafNode> + <tagNode name="initiate"> + <properties> + <help>Initiate a bandwidth test to specified host (port TCP/5001)</help> + <completionHelp> + <list><hostname> <x.x.x.x> <h:h:h:h:h:h:h:h></list> + </completionHelp> + </properties> + <command>iperf -c $4</command> + </tagNode> + </children> + </node> + </children> + </node> +</interfaceDefinition> |