이중 발판기 로그인 서버 - shell 스크립트 자동 로그인 실현

2628 단어
#!/usr/bin/expect

###   ###

set timeout 15
set jumpusr [lindex $argv 0]
set jumphost [lindex $argv 1]
set jumppassword [lindex $argv 2]
set usr [lindex $argv 3]
set host [lindex $argv 4]
set port [lindex $argv 5]
set password [lindex $argv 6]
set server [lindex $argv 7]

# ssh      
catch {spawn ssh $jumpusr@$jumphost}
expect "*assword:*" {send "$jumppassword\r"}

#  
expect "Select server:*" {send "$server\r"}

# ssh      
expect "*$jumphost*" { send "ssh -p $port $usr@$host\r" }
expect "*assword:*" {send "$password\r"}

#
expect "*$host*"; interact

다음으로 전송:https://www.cnblogs.com/hcy-fly/p/11088910.html

좋은 웹페이지 즐겨찾기