Linux中使用expect脚本实现远程机器自动登录_linuxshell教程-查字典教程网
Linux中使用expect脚本实现远程机器自动登录
Linux中使用expect脚本实现远程机器自动登录
发布时间:2016-12-28 来源:查字典编辑
摘要:首先创建一个expect脚本ssh_expect,文件内容如下:#!/usr/bin/expect-fsethostname[lindex$...

首先创建一个expect脚本ssh_expect,文件内容如下:

#!/usr/bin/expect -f set hostname [lindex $argv 0] set user [lindex $argv 1] set passwd [lindex $argv 2] set timeout 30 set force_conservative 1 if {$force_conservative} { set send_slow {128 .1} } spawn ssh $user@$hostname; expect { "*continue connecting (yes/no)"yesr"; exp_continue } "*assword:" { send -s "$passwdr"; } } interact

然后定义一些命令别名,比如:

alias h101='ssh_expect 192.168.0.101 <user> <password>' alias h102='ssh_expect 192.168.0.102 <user> <password>'

这些别名可以写到~/.bashrc文件中

然后执行 h101 就可以自动登录192.168.0.101机器了。

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新linuxshell学习
    热门linuxshell学习
    脚本专栏子分类