diff --git a/docs/index.html b/docs/index.html
index d67c86eb5..4c843e589 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -4574,6 +4574,7 @@ 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 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> +