Skip to content

Instantly share code, notes, and snippets.

@ianthrive
Last active August 29, 2015 14:20
Show Gist options
  • Save ianthrive/f4c2ffe77a75b63dacbb to your computer and use it in GitHub Desktop.
Save ianthrive/f4c2ffe77a75b63dacbb to your computer and use it in GitHub Desktop.
Clear DNS cache.
# OS X 10.10
sudo discoveryutil udnsflushcaches; sudo discoveryutil mdnsflushcache
# OS X 10.9
dscacheutil -flushcache; sudo killall -HUP mDNSResponder
# OS X 10.7-10.8
sudo killall -HUP mDNSResponder
# OS X 10.5-10.6
sudo dscacheutil -flushcache
# OS X 10.4
lookupd -flushcache
# Windows
ipconfig /flushdns
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment