expect批量管理计算机的脚本

发布时间:2020-09-17编辑:脚本学堂
分享一个shell中用expect批量管理计算机的脚本代码,在一台机器上写一个脚本来远程管理其它服务器,需要的朋友参考下。

首先,考虑用PHP-CLI,它有一个开发中的模块ssh2,可以完成相应的功能,用了半天都不行,Bug还太多。

expect是交互式shell编程的利器,可以根据返回值来确定下面发送什么命令,特别好用。
远程增加用户的shell脚本,需要机器装有expect。

代码分享:
 

复制代码 代码示例:
#!/usr/bin/expect
#脚本第一个参数是远程服务器IP
set IP     [lindex $argv 0]
#远程服务器用户名(通常用root)
set USER [lindex $argv 1]
#远程服务器用户名的密码
set PASSWD [lindex $argv 2]
#添加的新用户
set Nuser [lindex $argv 3]
#新用户的密码
set Npasswd [lindex $argv 4]
#用spawn启动一个ssh客户端
spawn ssh -l $USER $IP
#如果是第一次连接,要保存密钥再输入密码,如果不是第一次连接则输入密码
expect {
 "yes/no" { send "yesr"; exp_continue }
 "password:" { send "$PASSWDr" }
}
#如果不是root,要expect "$",下面不讲了,很简单
expect "*#"
send "useradd -s /bin/sh -d /home/$Nuser $Nuserr"
expect "*#"
send "passwd $Nuserr"
expect "*password:"
send "$Npasswdr"
expect "*password:"
send "$Npasswdr"
expect "*#"
send "exitr"