Overview
Operating systems cache or store away IP addresses for future use. It does so to speed up the connection time as fetching data from the DNS (domain name server) every time you connect to the network requires a lot more time and resources than necessary.
However, when the IP addresses do change, the operating system will still try to pull the IP address from its stash rather than from the DNS. Flush DNS command removes this stored cache and forces your device to retrieve the information from the DNS again. The Winsock reset restarts the communication required between your device and the network.
Critical Concepts
- Please refer to KB0033280 for a full troubleshooting guide
Steps to Take
Windows
- On the taskbar search, type "Command Prompt."
- Right click on Command Prompt and press "run as administrator."
- When asked whether to allow Command Prompt to make changes to your computer, select Yes.
- Open Command Prompt
- Type the command ipconfig /flushdns then press enter
- Type the command ipconfig /registerdns then press enter
- Type the command ipconfig /release then press enter
- Type the command ipconfig /renew then press enter
- Type the command netsh winsock reset then press enter
- Restart the computer
Mac
- Close all browser windows.
- Open Terminal. You can do this by pressing the Command key + Space Bar at the same time to open your Spotlight Search. Or click the magnifying glass in the top right hand corner. Then type "terminal." Click on Terminal.
- In the Terminal window, type the corresponding command for your Mac OS X version:
- OS X 10.11-10.15 (El Capitan, Sierra, High Sierra, Mojave, Catalina): sudo killall -HUP mDNSResponder
- OS X 10.10 (Yosemite): sudo discoveryutil mdnsflushcache
- OS X 10.7 - 10.9 (Mavericks, Mountain Lion, and Lion): sudo killall -HUP mDNSResponder
- OS X 10.6 and older: sudo dscacheutil -flushcache
- Press Enter, then enter your password to finish clearing the DNS cache.