1.登录脚本
login_server.sh
#!/bin/bash
# ReferenceLink:https://yq.aliyun.com/articles/516347
#show all host infos of serverList.txt
if [[ -f ./serverList.txt ]]
then
hostNum=`cat ./serverList.txt | wc -l`
else
echo "No .serverList.txt in ./ dir, please create it and add server infos."
exit
fi
while [ True ]
do
echo -e "+++++++++++ Host List ++++++++++++++++"
awk -F' ' '{printf("%3d -> %s@%s\n", NR,$1,$2)}' ./serverList.txt
echo -e "++++++++++++++++++++++++++++++++++++++"
echo -e "Enter hostID at first column."
echo -e "Enter q or Q to quit."
read hostID
if [[ "$hostID" == 'q' ]] || [[ "$hostID" == 'Q' ]]
then
exit
elif [[ $hostID -lt 1 ]] || [[ $hostID -gt $hostNum ]]
then
echo "Wrong hostID is selected, Only $hostNum hosts are listed, please check."
continue
else
break
fi
done
user=""
host=""
passwd=""
eval $(awk -v hostID=$hostID -F' ' '{if (NR==hostID) {printf("user=%s;host=%s;passwd=%s;",$1,$2,$3);}}' ./serverList.txt)
#echo $user, $host, $passwd
echo "login in $user@$host"
expect -c "
set timeout 30
spawn ssh $user@$host
expect {
\"*yes/no\" { send \"yes\r\"; exp_continue }
\"*?assword:\" { send \"$passwd\r\" }
}
interact
"
2.服务器列表
serverlist.txt
第一列:系统用户名称;
第二列:服务器ip地址;
第三列:服务器密码。
test1 192.168.1.222 123456
bt 192.168.1.101 123456
st 192.168.1.103 123456