码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-04-16 18:07:33      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:port   sts   ssh   sage   $0   ansible   ansi   报错   cmd   

配置文件分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

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

标签:port   sts   ssh   sage   $0   ansible   ansi   报错   cmd   

原文地址:https://blog.51cto.com/13229718/2487893

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!