Skip to content

Instantly share code, notes, and snippets.

@hankbao
Created April 11, 2013 14:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hankbao/5363986 to your computer and use it in GitHub Desktop.
Save hankbao/5363986 to your computer and use it in GitHub Desktop.
Reset network interfaces on OS X
#!/bin/sh
sudo ifconfig en0 down
sudo ifconfig en1 down
sudo route -n flush
sudo ifconfig en0 up
sudo ifconfig en1 up
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment