ping.sh

Posted leo001

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ping.sh相关的知识,希望对你有一定的参考价值。

#!/bin/bash
set -xv
ip1=‘172.20.100‘
for ip2 in $(seq 0 254)
do
ip=${ip1}.${ip2}
ping -c 2 -i 1 -w 1 $ip > /dev/null 2>&1
if [ $? -eq 0 ]; then
echo -e "ip:$ip up" | tee -a up.txt
else
echo -e "ip:$ip down" | tee -a down.txt
fi
done













以上是关于ping.sh的主要内容,如果未能解决你的问题,请参考以下文章