Skip to content

Instantly share code, notes, and snippets.

@wadewegner
Last active June 20, 2018 14:38
Show Gist options
  • Save wadewegner/57b366eac6a9d28adf409ec8d068e378 to your computer and use it in GitHub Desktop.
Save wadewegner/57b366eac6a9d28adf409ec8d068e378 to your computer and use it in GitHub Desktop.
Scripts to assist in fixing issues with OSX networking
# Usage: na
# Expected output: en0
alias na="ifconfig | pcregrep -M -o '^[^\t:]+:([^\n]|\n\t)*status: active' | egrep -o -m 1 '^[^\t:]+'"
# Usage: nr en0
nr() {
sudo ifconfig $1 down;sleep 10;sudo ifconfig $1 up
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment