并发取网段的ip地址并生成ansible的hosts

时间:2020-04-16 18:07:33   收藏:0   阅读:163
配置文件分ip和ansible_hosts,生成完成后需手动导入以免报错

#!/bin/bash
Usage(){
echo $"USAGRE:/bin/bash $0"
exit 1
}
if [ "$#" -ne "0" ];then
Usage
fi
CMD="ping -w 2 -c 2"
IP="192.168.1."
for n in `seq 1 254`
do
  {
$CMD $IP$n &> /dev/null
if [ $? -eq 0 ];then
echo "$IP$n" >> /root/ip
fi
  }&
done
sleep 3
for i in `cat /root/ip`
do
echo "$i  ansible_ssh_host=$i ansible_ssh_user=root ansible_ssh_pass=密码 ansible_ssh_port=22" >> ansible_hosts
done
评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!