Created
April 5, 2013 02:39
-
-
Save fermuch/5316174 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
GW=`/sbin/ip route list | grep default | awk '{print $3}'` | |
if ping -c 2 $GW | grep -o Unreachable; then | |
echo down; | |
echo `date`": reconnected to wlan" >> /var/log/wlan0-detail | |
ifdown wlan0 | |
sleep 5 | |
ifup wlan0 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment