diff options
author | Dmytro Aleksandrov <alkersan@gmail.com> | 2019-08-30 18:43:44 +0300 |
---|---|---|
committer | Dmytro Aleksandrov <alkersan@gmail.com> | 2019-08-30 18:43:44 +0300 |
commit | 76f498220c796a39a92ce3bed47c1cc5bac1a99d (patch) | |
tree | 09c0119bc7c6850570fd8f8f101a7c8e4cb7248f /op-mode-definitions/telnet.xml | |
parent | 24495a18b2ba39cd0c5b024dbe63f3e7df92e69c (diff) | |
download | vyos-1x-76f498220c796a39a92ce3bed47c1cc5bac1a99d.tar.gz vyos-1x-76f498220c796a39a92ce3bed47c1cc5bac1a99d.zip |
[op-mode] T1621 rewrite misc commands to python/xml syntax
Diffstat (limited to 'op-mode-definitions/telnet.xml')
-rw-r--r-- | op-mode-definitions/telnet.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/op-mode-definitions/telnet.xml b/op-mode-definitions/telnet.xml index 7ec75be88..c5bb6d283 100644 --- a/op-mode-definitions/telnet.xml +++ b/op-mode-definitions/telnet.xml @@ -5,23 +5,23 @@ <help>Telnet to a node</help> </properties> <children> - <tagNode name=""> + <tagNode name="to"> <properties> <help>Telnet to a host</help> <completionHelp> <list><hostname> <x.x.x.x> <h:h:h:h:h:h:h:h></list> </completionHelp> </properties> - <command>/usr/bin/telnet $2</command> + <command>/usr/bin/telnet $3</command> <children> - <tagNode name=""> + <tagNode name="port"> <properties> <help>Telnet to a host:port</help> <completionHelp> <list><0-65535></list> </completionHelp> </properties> - <command>/usr/bin/telnet $2 $3</command> + <command>/usr/bin/telnet $3 $5</command> </tagNode> </children> </tagNode> |