Skip to content

Instantly share code, notes, and snippets.

@MSayib
Last active July 2, 2024 17:07
Show Gist options
  • Save MSayib/54492ca4ccab8e10b641b3183ac8eb3a to your computer and use it in GitHub Desktop.
Save MSayib/54492ca4ccab8e10b641b3183ac8eb3a to your computer and use it in GitHub Desktop.
Flush DNS MacOS

Run: sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder

Using Alias:

  • For bash :
    echo "alias flushdns='sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder'" >> ~/.bashrc && source ~/.bashrc
    or
    echo "alias flushdns='sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder'" >> ~/.bash_profile && source ~/.bash_profile
  • For zsh :
    echo "alias flushdns='sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder'" >> ~/.zshrc && source ~/.zshrc
  • Try flushdns and hit Enter:
    flushdns
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment