曲线救国的方式暂时解决猫棒断电重启无法与aio-3399B联机的问题

This commit is contained in:
kos 2024-01-20 12:27:48 +00:00
parent 6a966c9f30
commit af2ccbe959
2 changed files with 38 additions and 1 deletions

View File

@ -0,0 +1,35 @@
#!/bin/sh
aio_pon_pid="$(cat /var/run/aio_pon.pid 2>/dev/null)"
get_name="$(cat /proc/$aio_pon_pid/comm 2>/dev/null)"
[ "$get_name" = "${0##*\/}" ]&&{
echo "脚本已经执行,请勿重复执行……"
exit 0
}
{
pidof aio_pon >/var/run/aio_pon.pid
ui=30
uu=a
while :
do
sleep $ui
get_device=$(uci -q get network.wan.device)||get_device=$(uci -q get network.wan.ifname)
get_proto=$(uci -q get network.wan.proto)
[ "$get_device" = "eth0.2" -a "$get_proto" = "pppoe" ]&&{
wget -q --spider http://192.168.1.10||{
sleep 5
uu=a$uu
wget -q --spider http://192.168.1.10||{
sleep 5
uu=a$uu
wget -q --spider http://192.168.1.10||uu=a$uu
}
}
[ "$uu" = "aaaa" ]&&{
/etc/init.d/network restart
ui=$((ui*5))
}||ui=80
uu=a
}
done
} >/dev/null 2>&1 &

View File

@ -17,9 +17,11 @@ uci -q set network.pon_route.netmask='255.255.255.0'
uci -q set network.pon_route.gateway='192.168.1.254'
uci -q set network.pon_route.metric='100'
uci -q commit network
chmod +x /bin/aio_pon
sed -i '2a\aio_pon' /etc/rc.local
;;
*)
exit 0
;;
esac
exit 0
exit 0