Ping随机IP以查看是否存在&ŧ039;的连接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ping随机IP以查看是否存在&ŧ039;的连接相关的知识,希望对你有一定的参考价值。
One that just checks a random IP on the internet to see if we have internet access: Code: shopt -s extglob GW=216.239.32.10 IFS='' PING=`ping -c1 -n -t5 -o $GW` RC=$? if [ $RC -eq 2 ]; then echo "Internet ($GW) no reply" exit 1 fi RT=$( echo $PING | head -n2 | tail -n1 | awk -F= '{print $4}' ) echo "Internet ($GW) $RT" exit $RC
以上是关于Ping随机IP以查看是否存在&ŧ039;的连接的主要内容,如果未能解决你的问题,请参考以下文章
检查是否安装了Apache&ŧ039;的modŧu rewrite。