一,安裝expect
html
yum install expect
二,實例
1,ssh實現自動登陸,並停在登陸服務器上
java
#!/usr/bin/expect -f set ip www.factj.com set password [lindex $argv 0 ] //接收第一個參數,並設置密碼 set timeout 10 //設置超時時間 spawn ssh root@$ip //發送ssh請滶 expect { //返回信息匹配 "*yes/no" { send "yes\r"; exp_continue} //第一次ssh鏈接會提示yes/no,繼續 "*password:" { send "$password\r" } //出現密碼提示,發送密碼 } interact //交互模式,用戶會停留在遠程服務器上面.
root@factj:/home/factj# ./test.exp factj spawn ssh root@w Last login: Fri Sep 7 10:47:43 2013 from www.factj.com [root@linux ~]#
這個例子有統一的接口,根據IP和密碼能夠鏈接到不一樣的機器.若是你嫌輸入IP和密碼麻煩,看下面的例子
linux
#!/usr/bin/expect -f set ip www.factj.com set password factj set timeout 10 spawn ssh root@$ip expect { "*yes/no" { send "yes\r"; exp_continue} "*password:" { send "$password\r" } } interact運行結果以下:
root@ubuntu:/home/zhangy# ./web.exp spawn ssh factj@www.factj.com Last login: Fri Agu 7 12:59:02 2013 from www.factj.com [root@linux ~]#2,ssh遠程登陸到服務器,而且執行命令,執行完後並退出
#!/usr/bin/expect -f set ip www.factj.com set password factj set timeout 10 spawn ssh root@$ip expect { "*yes/no" { send "yes\r"; exp_continue} "*password:" { send "$password\r" } } expect "#*" send "pwd\r" send "exit\r" expect eof運行結果以下:
root@ubuntu:/home/zhangy# ./test3.exp spawn ssh root@www.factj.com root@www.factj.com's password: Last login: Fri agu 7 14:05:07 2013 from 116.246.27.90 [root@localhost ~]# pwd /root [root@localhost ~]# exit logout Connection to www.factj.com closed.3,遠程登陸到ftp,而且下載文件
#!/usr/bin/expect -f set ip [lindex $argv 0 ] set dir [lindex $argv 1 ] set file [lindex $argv 2 ] set timeout 10 spawn ftp $ip expect "Name*" send "zwh\r" expect "Password:*" send "zwh\r" expect "ftp>*" send "lcd $dir\r" expect { "*file" { send_user "local $_dir No such file or directory";send "quit\r" } "*now*" { send "get $dir/$file $dir/$file\r"} } expect { "*Failed" { send_user "remote $file No such file";send "quit\r" } "*OK" { send_user "$file has been download\r";send "quit\r"} } expect eof運行結果以下:
root@ubuntu:/home/zhangy# ./test2.exp www.factj.com /var/www/www aaa.html spawn ftp www.factj.com Connected to www.factj.com. 220 (vsFTPd 2.0.5) Name (www.factj.com:root): zwh 331 Please specify the password. Password: 230 Login successful. Remote system type is UNIX. Using binary mode to transfer files. ftp> lcd /var/www/www Local directory now /var/www/www ftp> get /var/www/www/aaa.html /var/www/www/aaa.html local: /var/www/www/aaa.html remote: /var/www/www/aaa.html 200 PORT command successful. Consider using PASV. 150 Opening BINARY mode data connection for /var/www/www/aaa.html (66 bytes). 226 File send OK. 66 bytes received in 0.00 secs (515.6 kB/s) quit aaa.html has been download 221 Goodbye.
文章同時發佈在 http://www.factj.com/archives/364.html web