通过shell脚本编写:
#!/bin/sh tries=0 ok=0 echo — my watchdog start — while [ “1” = “1” ] do if /bin/ping -c 1 114.114.114.114 >/dev/null then echo “net is fine!” >/dev/null else echo “net is offline!” tries=$((tries+1)) if [ $tries -gt 20 ] ; then tries=0 /app/reconnect.sh & killall -9 quectel-CM else echo $tries fi fi sleep 3 done定时去ping 114,获取网络状态,网络断开达到设定期限,需要重启网络。
免责声明:文章内容来自互联网,本站不对其真实性负责,也不承担任何法律责任,如有侵权等情况,请与本站联系删除。
转载请注明出处:定时 ping 判断网络状态 https://www.yhzz.com.cn/a/14755.html