須要目標機器安裝有 expect 命令bash
分紅五個文件config.ini(配置文件)、id_ras.pub(公鑰)、read.sh(一個函數,用於讀取配置文件)、test.sh(執行文件)、run.sh(遠程運行腳本) 是一個配置文件.ssh
步驟1:讀取配置文件 ip,user,pwd函數
步驟2:將id_rsa.pub、run.sh scp到遠程機器上spa
步驟3:遠程運行腳本code
read.shblog
#!/bin/bash GetKey(){ section=$(echo $1 |cut -d '.' -f 1) key=$(echo $1 |cut -d '.' -f 2) if [ "$section"x = "ip"x ];then nub=`cat config.ini | grep -n "$key={" |awk -F ":" '{print $1}'` nue=`cat config.ini | grep -n "}" |awk -F ":" '{print $1}'` nub=`expr $nub +1` for i in $nue do if [ $i -gt $nub ]; then a=$i break fi done nue=`expr $a -1` sed -n "$nub,$nue p" config |sed s/,//g else sed -n "/\[$section\]/,/\[.*\]/{ /^\[.*\]/d /^[ \t]*$/d /^$/d /^#.*$/d s/^[ \t]*$key[ \t]*=[ \t]*\(.*\)[ \t]*/\1/p }" config.ini }
run.ship
#!/bin/bash Create(){ /usr/bin/expect -c" set timeout 30 spawn ssh-keygen -t rsa expect \":\" send \"\r\" expect \":\" send \"\r\" expect \":\" send \"\r\" expect eof exit " } if [ ! -d .ssh ];then Create if [ $? != 0 ];then echo "step for create failed" exit 0 else cat id_rsa.pub >> .ssh/authorized_keys if [ $? != 0 ];then echo "step for cp failed" exit 0 fi fi else cat id_rsa.pub >> .ssh/authorized_keys if [ $? != 0 ];then echo "step for cp failed" exit 0 fi fi
test.shit
#!/bin/bash . ./read.sh ip=$(GetKey "ip.ip") passwd=$(GetKey "pass.passwd") user=$(GetKey "user.usr") for i in $ip do /usr/bin/expect -c" set timeout10 spawn /usr/bin/scp -r run.sh $user@$i expect \"password:\" {send \"$passwd\r\"} spawn /usr/bin/scp -r id_rsa.pub $user@$i expect \"password:\" {send \"$passwd\r\"} expect eof exit " /usr/bin/expect << EOF set timeout 10 spawn ssh user@$i expect "password:" send "$passwd\r" expect "]" send "sh run.sh\r" send "exit\r" expect eof EOF done
配置文件io
[ip] ip={ 12.23.31.114 ,21.34.54.112 } [user] usr=hehehe [pass] passwd=wohehehda