Skip to content

Instantly share code, notes, and snippets.

@fermuch
Created April 5, 2013 02:39
Show Gist options
  • Save fermuch/5316174 to your computer and use it in GitHub Desktop.
Save fermuch/5316174 to your computer and use it in GitHub Desktop.
#!/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