Shell脚本自动SSH登录服务器

我是在centos上测试的

安装必须要的包

首先yum search expect,查看相关的expect包,

yum install expect.x86_64
yum install expect-devel.x86_64

新建脚本文件,如下

#!/usr/bin/expect

set timeout 30
spawn ssh user@ip
expect "password:"
send "pwd\r"
expect "]*"   # 这句不能少,好多教程都是少了这句,实际测试的时候都不通
send "\r"
send "exit\r"  # 退出
interact

执行脚本

需要给脚本增加执行权限chmod +x shell.sh,不能使用sh shell.sh的方式启动,否则会报如下错误:

ssh_shell.sh: line 4: spawn: command not found

参考文章:

  1. http://blueicer.blog.51cto.com/395686/88175
  2. http://www.3mu.me/ssh%E4%BD%BF%E7%94%A8expect%E8%87%AA%E5%8A%A8%E8%BE%93%E5%85%A5%E5%AF%86%E7%A0%81%E3%80%81%E5%91%BD%E4%BB%A4%E5%AE%9E%E7%8E%B0%E9%9D%9E%E4%BA%A4%E4%BA%92%E5%BC%8F%E5%AF%86%E7%A0%81%E6%8E%88%E6%9D%83/

你可能感兴趣的:(Shell脚本自动SSH登录服务器)