Linux ping網段ip腳本

#!/bin/bash
. /etc/init.d/functions
for var in {1..254};
do
ip=31.0.140.$var
ping -c2 $ip >/dev/null 2>&1
if [ $? = 0 ];then
action "$ip" /bin/true
else
action "$ip" /bin/false
fi
done
相關文章
相關標籤/搜索