telnet_loop.tcl
上传用户:weixinbag
上传日期:2020-04-06
资源大小:5k
文件大小:0k
源码类别:

Telnet服务器

开发平台:

Tcl-Tk

  1. package require Expect 
  2. #!/usr/bin/expect
  3. set ipaddr 127.0.0.2
  4. set usrname "me"
  5. set passwd "who"
  6. for {set i 1} {$i < 11} {incr i} {
  7. spawn telnet $ipaddr
  8. expect "y/n"
  9. send "nr"
  10. expect "login:"
  11. send "$usrnamer"
  12. expect "password:"
  13. send "$passwdr"
  14. expect "*>"
  15. send "verr"
  16. expect ">"
  17. #send "showrn"
  18. #expect "INSERVICErn#"
  19. #exec command.com /c control
  20. send "exitrn"
  21. #expect eof
  22. puts "$i telnet terminal is over!"
  23. }
  24. puts "script is over!"