Skip to content

Instantly share code, notes, and snippets.

@willsthompson
Created June 6, 2016 15:48
Show Gist options
  • Save willsthompson/fc07ed777e5693794a572f63af634dfc to your computer and use it in GitHub Desktop.
Save willsthompson/fc07ed777e5693794a572f63af634dfc to your computer and use it in GitHub Desktop.
#
# OSX: Flush all the gunk out of your routing tables and DNS.
#
networksetup -setairportpower airport off;
for i in {1..10}
do
dscacheutil -flushcache;
killall -HUP mDNSResponder;
route -n flush;
done
networksetup -setairportpower airport on;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment