Last active
August 29, 2015 14:20
-
-
Save ianthrive/f4c2ffe77a75b63dacbb to your computer and use it in GitHub Desktop.
Clear DNS cache.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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