linux expect自動登入ssh,ftp

G8bao7發表於2015-05-20
參考
http://blog.51yip.com/linux/1462.html



expect是一種能夠按照指令碼內容裡面設定的方式與互動式程式進行“會話”的程式。根據指令碼內容,Expect可以知道程式會提示或反饋什麼內容以及 什麼是正確的應答。它是一種可以提供“分支和巢狀結構”來載入程式流程的解釋型指令碼語言。

shell功能很強大,但是不能實現有互動功能的多機器之前的操作,例如ssh和ftp.而expect可以幫助我們來實現.


一,安裝expect

  1. yum install expect  

其實expect根bash形勢上差不多的.


二,例項

1,ssh實現自動登入,並停在登入伺服器上

點選(此處)摺疊或開啟

  1. #!/usr/bin/expect -f
  2. set ip [lindex $argv 0 ] //接收第一個引數,並設定IP
  3. set password [lindex $argv 1 ] //接收第二個引數,並設定密碼
  4. set timeout 10 //設定超時時間
  5. spawn ssh root@$ip //傳送ssh請滶
  6. expect { //返回資訊匹配
  7. \"*yes/no\" { send \"yes\\r\"; exp_continue} //第一次ssh連線會提示yes/no,繼續
  8. \"*password:\" { send \"$password\\r\" } //出現密碼提示,傳送密碼
  9. }
  10. interact //互動模式,使用者會停留在遠端伺服器上面.

執行結果如下:

  1. root@ubuntu:/home/zhangy# ./test.exp 192.168.1.130 admin  
  2. spawn ssh root@192.168.1.130  
  3. Last login: Fri Sep  7 10:47:43 2012 from 192.168.1.142  
  4. [root@linux ~]#  


這個例子有統一的介面,根據IP和密碼可以連線到不同的機器.如果你嫌輸入IP和密碼麻煩,看下面的例子

點選(此處)摺疊或開啟

  1. #!/usr/bin/expect -f
  2. set ip 192.168.1.130
  3. set password admin
  4. set timeout 10
  5. spawn ssh root@$ip
  6. expect {
  7. \"*yes/no\" { send \"yes\\r\"; exp_continue}
  8. \"*password:\" { send \"$password\\r\" }
  9. }
  10. interact

執行結果如下:

  1. root@ubuntu:/home/zhangy# ./web.exp  
  2. spawn ssh root@192.168.1.130  
  3. Last login: Fri Sep  7 12:59:02 2012 from 192.168.1.142  
  4. [root@linux ~]#  



2,ssh遠端登入到伺服器,並且執行命令,執行完後並退出

點選(此處)摺疊或開啟

  1. #!/usr/bin/expect -f
  2. set ip 192.168.1.130
  3. set password admin
  4. set timeout 10
  5. spawn ssh root@$ip
  6. expect {
  7. \"*yes/no\" { send \"yes\\r\"; exp_continue}
  8. \"*password:\" { send \"$password\\r\" }
  9. }
  10. expect \"#*\"
  11. send \"pwd\\r\"
  12. send \"exit\\r\"
  13. expect eof

執行結果如下:

  1. root@ubuntu:/home/zhangy# ./test3.exp  
  2. spawn ssh root@192.168.1.130  
  3. root@192.168.1.130's password:  
  4. Last login: Fri Sep  7 14:05:07 2012 from 116.246.27.90  
  5. [root@localhost ~]# pwd  
  6. /root  
  7. [root@localhost ~]# exit  
  8. logout  
  9. Connection to 192.168.1.130 closed.  

3,遠端登入到ftp,並且下載檔案

點選(此處)摺疊或開啟

  1. set ip [lindex $argv 0 ]
  2. set dir [lindex $argv 1 ]
  3. set file [lindex $argv 2 ]
  4. set timeout 10
  5. spawn ftp $ip
  6. expect \"Name*\"
  7. send \"zwh\\r\"
  8. expect \"Password:*\"
  9. send \"zwh\\r\"
  10. expect \"ftp>*\"
  11. send \"lcd $dir\\r\"
  12. expect {
  13. \"*file\" { send_user \"local $_dir No such file or directory\";send \"quit\\r\" }
  14. \"*now*\" { send \"get $dir/$file $dir/$file\\r\"}
  15. }
  16. expect {
  17. \"*Failed\" { send_user \"remote $file No such file\";send \"quit\\r\" }
  18. \"*OK\" { send_user \"$file has been download\\r\";send \"quit\\r\"}
  19. }
  20. expect eof

執行結果如下:

  1. root@ubuntu:/home/zhangy# ./test2.exp 192.168.1.130 /var/www/www aaa.html  
  2. spawn ftp 192.168.1.130  
  3. Connected to 192.168.1.130.  
  4. 220 (vsFTPd 2.0.5)  
  5. Name (192.168.1.130:root): zwh  
  6. 331 Please specify the password.  
  7. Password:  
  8. 230 Login successful.  
  9. Remote system type is UNIX.  
  10. Using binary mode to transfer files.  
  11. ftp> lcd /var/www/www  
  12. Local directory now /var/www/www  
  13. ftp> get /var/www/www/aaa.html /var/www/www/aaa.html  
  14. local: /var/www/www/aaa.html remote: /var/www/www/aaa.html  
  15. 200 PORT command successful. Consider using PASV.  
  16. 150 Opening BINARY mode data connection for /var/www/www/aaa.html (66 bytes).  
  17. 226 File send OK.  
  18. 66 bytes received in 0.00 secs (515.6 kB/s)  
  19. quit aaa.html has been download  
  20. 221 Goodbye.  

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26250550/viewspace-1664209/,如需轉載,請註明出處,否則將追究法律責任。

相關文章