实战-找出192.168.1.1-10网段中,服务器已经关机的IP地址

[root@xuegod63 ~]# vim ping.sh

#!/bin/bash
i=1
for (( i=1;i<10;i++ ))
do
  ping  -c  3  192.168.1.$i &> /dev/null
  if  [ $? -ne 0 ];then
     echo 192.168.1.$i is shutdown
  fi
done

版权声明:
作者:WaterBear
链接:https://l-t.top/1629.html
来源:雷霆运维
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>