A Telnet Client Using Expect

The following expect script achieves a simple telnet client: login -> send command -> exit. The point is the form of prompt in regular expression. You have to add 3 backslash before "[", "]" and "$", and add "-re" option after expect command in "expect $prompt".

#!/usr/bin/expect set prompt "\[hadoop@49server\s.*\]\\$\s" spawn telnet 10.0.2.49 expect "login:" send "hadoop\r" expect "Password:" send "h\r" expect -re $prompt send "df -h\r" expect -re $prompt send "ls -l\r" expect -re $prompt send "exit\r" expect eof

The following script achieves auto-login and auto-logout. Save it as autoTelnet.exp:

#!/usr/bin/expect set ip [lindex $argv 0] set username [lindex $argv 1] set password [lindex $argv 2] spawn telnet $ip expect "login:" send "$username\r" expect "Password:" send "$password\r" interact +++ return send "exit\r" expect eof

then run it:

$ ./autoTelnet.exp 10.0.2.49 hadoop h

After auto-login, you can send any commands as if you communicates with host directly. When you want to quit, type "+++" and then the script exits from interact mode and runs logout routine.

A Telnet Client Using Expect,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。