diff options
author | Christian Breunig <christian@breunig.cc> | 2024-09-12 05:27:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-12 05:27:29 +0000 |
commit | dc7abeb08f4bfe9bd1b3106ba45692c7490d20a6 (patch) | |
tree | 92bcae06233c5b1b1cb3f1f9661eacd5a99c5413 /op-mode-definitions/execute-bandwidth-test.xml.in | |
parent | 4d2d4311f12c7466edc904be41ec4e716021e791 (diff) | |
parent | 65622a733df80ecee2192f3cd5758a27e4324b3b (diff) | |
download | vyos-1x-dc7abeb08f4bfe9bd1b3106ba45692c7490d20a6.tar.gz vyos-1x-dc7abeb08f4bfe9bd1b3106ba45692c7490d20a6.zip |
Merge pull request #4042 from natali-rs1985/T6694-current
op-mode: T6694: Move some op-mode commands to the "execute" family
Diffstat (limited to 'op-mode-definitions/execute-bandwidth-test.xml.in')
-rw-r--r-- | op-mode-definitions/execute-bandwidth-test.xml.in | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/op-mode-definitions/execute-bandwidth-test.xml.in b/op-mode-definitions/execute-bandwidth-test.xml.in new file mode 100644 index 000000000..1581d5c25 --- /dev/null +++ b/op-mode-definitions/execute-bandwidth-test.xml.in @@ -0,0 +1,59 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="execute"> + <children> + <node name="bandwidth-test"> + <properties> + <help>Initiate or wait for bandwidth test</help> + </properties> + <children> + <node name="accept"> + <properties> + <help>Wait for bandwidth test connections (port TCP/5001)</help> + </properties> + <command>/usr/bin/iperf -V -s</command> + <children> + <leafNode name="tcp"> + <properties> + <help>Wait for bandwidth test connections (port TCP/5001)</help> + </properties> + <command>/usr/bin/iperf -V -s</command> + </leafNode> + <leafNode name="udp"> + <properties> + <help>Wait for bandwidth test connections (port UDP/5001)</help> + </properties> + <command>/usr/bin/iperf -V -s -u</command> + </leafNode> + </children> + </node> + <node name="initiate"> + <properties> + <help>Initiate a bandwidth test to specified host</help> + </properties> + <children> + <tagNode name="tcp"> + <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>${vyos_op_scripts_dir}/execute_bandwidth_test.sh "$5"</command> + </tagNode> + <tagNode name="udp"> + <properties> + <help>Initiate a bandwidth test to specified host (port UDP/5001)</help> + <completionHelp> + <list><hostname> <x.x.x.x> <h:h:h:h:h:h:h:h></list> + </completionHelp> + </properties> + <command>${vyos_op_scripts_dir}/execute_bandwidth_test.sh "$5" "-u"</command> + </tagNode> + </children> + </node> + </children> + </node> + </children> + </node> +</interfaceDefinition> |