expect脚本免密码

Posted 子非木

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了expect脚本免密码相关的知识,希望对你有一定的参考价值。

  1 #!/usr/bin/expect
  2 set timeout 10
  3 spawn ssh [email protected]20.0.102.19
  4 expect "password:"
  5 send "123456\n"
  6 interact 
 1 #!/usr/bin/expect
  2 set timeout 10
  3 spawn scp -r [email protected]20.0.102.19:/root/.ssh/authorized_keys /root/authorized_keys
  4 expect "password:"
  5 send "123456\n"
  6 interact

 

以上是关于expect脚本免密码的主要内容,如果未能解决你的问题,请参考以下文章

使用expect实现ssh免密码登陆

linux系统,多台机器ssh免密码登录同一台机器执行某个脚本,不需要expect

expect检查ssh登陆对端是否免密

Linux编写Shell脚本利用expect实现免问答ssh登录服务器

Linux免密大法好 ssh-copy-id 和 expect 免交互输入脚本

通过expect免自动输入密码登陆远程服务器