From 04632b415168861153d1507fff8614dc2aef491b Mon Sep 17 00:00:00 2001
From: Stefan Bodewig Version 1.3 - 2000/11/29 Version 1.3 - 2000/11/30
Table of Contents
@@ -4573,8 +4573,8 @@ it had been located at htdocs/manual/ChangeLog.txt
.
If you do specify a userid and password, the system will assume a common unix prompt to wait on. This behavior can be easily over-ridden.
+Attribute | +Values | +Required | +
---|---|---|
userid | +the login id to use on the telnet server. | +No | +
password | +the login password to use on the telnet server. | +No | +
server | +the address of the remote telnet server. | +Yes | +
port | +the port number of the remote telnet server. Defaults to port 21. | +No | +
initialCR | +send a cr after connecting ("yes"). Defaults to "no". | +No | +
timeout | +set a default timeout to wait for a response. Specified in seconds. Default is no timeout. | +No | +
+ +This task can be rewritten as: ++<telnet userid="bob" password="badpass" server="localhost"> + <read>/home/bob</read> + <write>ls</write> + <read string="/home/bob"/> +</telnet> +
+ +A timeout can be specified at the <telnet> level or at the <read> level. This will connect, issue a sleep command that is suppressed from displaying and wait 10 seconds before quitting. ++<telnet server="localhost"> + <read>ogin:</read> + <write>bob</write> + <read>assword:</read> + <write>badpass</write> + <read>/home/bob</read> + <write>ls</write> + <read>/home/bob</read> +</telnet> +
+ +The task can be used with other ports as well: ++<telnet userid="bob" password="badpass" server="localhost" timeout="20"> + <read>/home/bob</read> + <write echo="false">sleep 15</write> + <read timeout="10">/home/bob</read> +</telnet> +
++<telnet userid="bob" password="badpass" server="localhost" defaultTimeout="20"> + <read/> + <write>GET / http/0.9</write> + <write/> + <read timeout="10"></HTML></read> +</telnet> +
If you do specify a userid and password, the system will assume a common unix prompt to wait on. This behavior can be easily over-ridden.
-Attribute | -Values | -Required | -
---|---|---|
userid | -the login id to use on the telnet server. | -No | -
password | -the login password to use on the telnet server. | -No | -
server | -the address of the remote ftp server. | -Yes | -
port | -the port number of the remote ftp server. Defaults to port 21. | -No | -
initialCR | -send a cr after connecting ("yes"). Defaults to "no". | -No | -
timeout | -set a default timeout to wait for a response. Specified in seconds. Default is no timeout. | -No | -
- -This task can be rewritten as: --<telnet userid="bob" password="badpass" server="localhost"> - <read>/home/bob</read> - <write>ls</read> - <read string="/home/bob"/> -</telnet> -
- -A timeout can be specified at the <telnet> level or at the <read> level. This will connect, issue a sleep command that is suppressed from displaying and wait 10 seconds before quitting. --<telnet server="localhost"> - <read>ogin:</read> - <write>bob</read> - <read>ssword:</read> - <write>badpass</read> - <read>/home/bob</read> - <write>ls</read> - <read>/home/bob</read> -</telnet> -
- -The task can be used with other ports as well: --<telnet userid="bob" password="badpass" server="localhost" timeout="20"> - <read>/home/bob</read> - <write echo="false">sleep 15</read> - <read timeout="10">/home/bob</read> -</telnet> -
--<telnet userid="bob" password="badpass" server="localhost" defaultTimeout="20"> - <read/> - <write>GET / http/0.9</read> - <write/> - <read timeout="10"></HTML></read> -</telnet> -