1

ping_shell是否畅通_检查主机(pingsetang)

来源:网络 作者:沐晴つ 0

ping_shell是否畅通_检查主机(pingsetang)

系统大全为您提供

#!/bin/bash#2013-10-21# ping检测网络是否畅通set -u#set -xping_fun(){d_network=192.168.1echo -n "input the network(default $d_network):"read networkwww.win7cn.com: ${network:=$d_network}echo "network:$network"d_hostip_beg=1d_hostip_end=254echo -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"count=1up_host='正常IP:';for ((hostip=$hostip_beg;hostip<=$hostip_end;hostip++));dohost=$network.$hostipecho "开始ping检测$host"ping -c $count $host &>/dev/nullif [ $? = 0 ];thenecho "IP $host 是正常的"up_host="$up_host $host"elseecho "IP $host 是不正常的"fidoneecho $up_host;exit 0}echo "----开始执行ping程序----"

ping_fun  

以上就是系统大全给大家介绍的如何使的方法都有一定的了解了吧,好了,如果大家还想了解更多的资讯,那就赶紧点击系统大全官网吧。

本文来自系统大全https://www.booso.com/filepic/20230530/0ootmylvuul