定位 发表于 2017-1-28 14:55:26

expect远程批量修改root密码

我们时常会需要要求定期修改一次服务器的root密码,这里是堕胎服务器,一共有11台,我又不想一台一台的去修改,所以单独整了个批量修改密码的脚本.

脚本内容:
cat /root/chpasswd.sh#!/bin/bash
file="iplist.txt"

for ip in `awk '/^[^#]/{print $1}' $file`; do
    port=`awk -v I=$ip '{if(I==$1)print $2}' $file`
    user=`awk -v I=$ip '{if(I==$1)print $3}' $file`
    pass=`awk -v I=$ip '{if(I==$1)print $4}' $file`
    new=`awk -v I=$ip '{if(I==$1)print $5}' $file`
expect -c "
    spawn ssh -p$port $user@$ip
    set timeout 2
    expect {
        \"(yes/no)\" {send \"yes\r\";exp_continue}
        \"password:\" {send \"$pass\r\";exp_continue}
        \"$user@*\" {send \"echo \'$new\' |passwd --stdin $user\r exit\r\";exp_continue}
        #\"$user@*\"  {send \"df -h\r exit\r\";exp_continue}
    }"
donecat /root/soft_shell/iplist.txt
#     ip     user    port    passwd    newpasswd
#-------------------------------------------------------
192.168.1.62  root    22     123456     456789
192.168.1.63  root    22     123456     456789

ps:
可以看到chpasswd.sh和iplist.txt都在同一文件夹里,只需要把iplist.txt里设置好,就可以批量对服务器进行修改密码了.

页: [1]
查看完整版本: expect远程批量修改root密码