Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
#!/bin/sh
ping -w 10 -c 1 8.8.8.8
if [ $? = 0 ]
then
        echo noreply
else
        /sbin/reboot
fi


In the AsusWrt, the below script works good

Code Block
languagebash
title/jffs/scripts/reboot_if_ping_does_not_work
#!/bin/ash

if [ $( ping -c 1 google.com | grep ttl | wc -l ) -eq 0 ]
then
        echo noreply
        /sbin/reboot
else
        echo "google.com is reachable"
fi