重启 检测默认路由

ip route ls table all|grep default|grep via

rc.local修改 添加   sudo vim /etc/init.d/rc.local 

cd /home/zzx/
./test_route.sh &

#!/bin/bash
sleep 100
ip route ls table all|grep -q via && reboot ||echo "lost"

sudo chmod +x test_route.sh

原文地址:https://www.cnblogs.com/hanxing/p/4137848.html