使用expect实现ssh自动输入密码,从而自动登陆Linux

以下来自网上的一些资料和自己的实验,用以下命令执行: 

expect -f expect-ssh.exp <username> <password> <hostname or ip> 

注意,在这个expect-ssh.exp中,connect函数主要负责登陆,代码的最后两行,两个send是登陆上去后,执行的命令,注意最后一定要执行一个exit,否则会导致expect执行完成后还留在远程主机上。 

这里是expect-ssh.exp的源码: 
proc usage {} {
    puts stderr 
" usage: $::argv0 username password ipaddress "
    
exit   1
}

proc 
connect  {pass} {
   expect {
       
" (yes/no)? "  {
           
send   " yes\n "
           expect 
" *password: "  {
                
send   " $pass\n "
                expect {
                    
" *# "  {
                        
return   0
                    }
                }
           }
       }
       
" *password: "  {
           
send   " $pass\n "
           expect {
               
" *# "  {
                   
return   0
               }
           }
       }
   }
   
return   1
}

if  { $argc   !=   3 } { usage }

set username [lindex 
$argv   0 ]
set password [lindex 
$argv   1 ]
set hostip [lindex 
$argv   2 ]

spawn ssh ${username}@${hostip}

if  {[ connect   $password ]} {
    
exit   1
}

send   " rm -f /root/testeric;rm -f pattern_file\n "
send   " exit\n "
expect 
eof

 

 

你可能感兴趣的:(expect)