码迷,mamicode.com
首页 > 系统相关 > 详细

shell脚本 expect 实现自动登陆

时间:2017-08-01 14:38:31      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:address   ipaddress   continue   div   passwd   tin   bsp   end   3.2   

vi auto_ssh.exp
#!/usr/bin/expect
 
set ipaddress "123.227.159.159"
set passwd "你的密码"
set timeout 30
 
spawn ssh root@$ipaddress
 
expect {
"yes/no" {send "yes\r";exp_continue}
"password" {send "$passwd\r"}     #必须要加\r
}
interact

shell脚本 expect 实现自动登陆

标签:address   ipaddress   continue   div   passwd   tin   bsp   end   3.2   

原文地址:http://www.cnblogs.com/rayong/p/7267714.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!