您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關如何實現一個可交互的并發ping檢測腳本的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
代碼如下:
#!/bin/bash
#********************************#
#2013-01-11 17:00:00 wanggy exp #
#note:ping monitor #
#********************************#
set -u
ping_fun()
{
d_network=192.168.1
echo -n "input the network(default $d_network):"
read network
: ${network:=$d_network}
echo "network:$network"
d_hostip_beg=1
d_hostip_end=254
echo -n "input the hostip(default $d_hostip_beg $d_hostip_end):"
read hostip_beg hostip_end
: ${hostip_beg:=$d_hostip_beg}
: ${hostip_end:=$d_hostip_end}
echo "hostip_beg:$hostip_beg"
echo "hostip_end:$hostip_end"
if [ $hostip_beg -gt $hostip_end ];then
echo "$hostip_beg greater than $hostip_end!!!"
exit 0
fi
: >pinglog
: >pingerrlog
ping_count=3
for ((hostip=$hostip_beg;hostip<=$hostip_end;hostip++));do
{
host=$network.$hostip
echo "開始ping檢測$host"
ping -c $ping_count $host >/dev/null
if [ $? = 0 ];then
echo "$host is up"
echo "$host is up" >>pinglog
else
echo "$host is down"
echo "$host is down" >>pingerrlog
fi
}&
done
wait
}
main()
{
echo "----開始執行ping程序----"
ping_fun
}
main
exit 0
感謝各位的閱讀!關于“如何實現一個可交互的并發ping檢測腳本”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。