yum install expect -y
expect 参考:http://blog.csdn.net/snow_114/article/details/53245466
yum install sshpass -y

ssh登陆不能在命令行中指定密码。sshpass的出现,解决了这一问题。sshpass用于非交互SSH的密码验证,一般用在sh脚本中,无须再次输入密码。

它允许你用 -p 参数指定明文密码,然后直接登录远程服务器,它支持密码从命令行、文件、环境变量中读取。

参考:http://blog.csdn.net/wangjunjun2008/article/details/19993395

先利用expect 传文件过去 可以实现免yes确认和指定传参密码

#!/usr/bin/expect -f
set timeout
set host [lindex $argv ]
set dport [lindex $argv ]
set username [lindex $argv ]
set password [lindex $argv ]
set src_file [lindex $argv ]
set dest_file [lindex $argv ] spawn scp -P $dport -r $src_file $username@$host:$dest_file
expect {
"(yes/no)?"
{
send "yes\n"
expect "*assword:" { send "$password\n"}
}
}
expect eof
expect {
"*assword:"
{
send "$password\n"
}
}
expect "100%"
expect eof
执行的时候要传参 传参格式:
[root@sxzros ~]# ./.sh 172.20.1.6  root passwd /root/ /root/

然后利用sshpass指定密码免交互对远端机器进行文件解压或者进行文件操作
#sshpass -p passwd  ssh -t -p  [email protected] 'tar xf /root/ddd1.tar.lzma -C /tmp'
sshpass -p passwd ssh -t -p [email protected] 'cd ~;touch 222.txt'

  

05-11 22:45