diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-08-21 18:34:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-21 18:34:46 +0200 |
commit | 10fdd0a641a824ab988e16cd5472d441b299ccc9 (patch) | |
tree | 01ca152394ca72507bc0fff7ca5b49d0eb67a9ac /op-mode-definitions/traceroute.xml | |
parent | 8520b829e381382af66833f6ea61aa04e03c332b (diff) | |
parent | f16633f0ef2dd074c24387cbd2b9d5541297509c (diff) | |
download | vyos-1x-10fdd0a641a824ab988e16cd5472d441b299ccc9.tar.gz vyos-1x-10fdd0a641a824ab988e16cd5472d441b299ccc9.zip |
Merge pull request #108 from alkersan/current
[op-mode] T1596 rewrite 'telnet' and 'traceroute' operations to xml style
Diffstat (limited to 'op-mode-definitions/traceroute.xml')
-rw-r--r-- | op-mode-definitions/traceroute.xml | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/op-mode-definitions/traceroute.xml b/op-mode-definitions/traceroute.xml new file mode 100644 index 000000000..85f6047c1 --- /dev/null +++ b/op-mode-definitions/traceroute.xml @@ -0,0 +1,53 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="traceroute"> + <properties> + <help>Track network path to node</help> + </properties> + <children> + <tagNode name=""> + <properties> + <help>Track network path to specified node</help> + <completionHelp> + <list><hostname> <x.x.x.x> <h:h:h:h:h:h:h:h></list> + </completionHelp> + </properties> + <command>/usr/bin/traceroute $2</command> + </tagNode> + + <tagNode name="ipv4"> + <properties> + <help>Track network path to <hostname|IPv4 address></help> + <completionHelp> + <list><hostname> <x.x.x.x></list> + </completionHelp> + </properties> + <command>/usr/bin/traceroute -4 $3</command> + </tagNode> + + <tagNode name="ipv6"> + <properties> + <help>Track network path to <hostname|IPv6 address></help> + <completionHelp> + <list><hostname> <h:h:h:h:h:h:h:h></list> + </completionHelp> + </properties> + <command>/usr/bin/traceroute -6 $3</command> + </tagNode> + </children> + </node> + + <node name="monitor"> + <children> + <tagNode name="traceroute"> + <properties> + <help>Monitor the path to a destination in realtime</help> + <completionHelp> + <list><hostname> <x.x.x.x> <h:h:h:h:h:h:h:h></list> + </completionHelp> + </properties> + <command>/usr/bin/mtr $3</command> + </tagNode> + </children> + </node> +</interfaceDefinition> |