实现ssh 自动登录

#!/usr/bin/expect
spawn ssh root@192.168.22.194
expect "*password:"
send "123456"

send "\n"

interact

 

绝对路径执行:./test.sh 

备注:expect,spawn命令 不支持,可以yum -y install expect  /spawn安装;

 

posted @ 2020-06-01 22:49  等待1248  阅读(107)  评论(0)    收藏  举报