Skip to content Skip to main navigation Skip to footer

Linux/ Windows/ Mac: 如何刷新DNS缓存

当你访问一个域名或者网址的时候,可能会遇到无法访问的情况,也可能会提示你域名无法解析,这个时候我们该怎么办呢?我们可以尝试下刷新DNS的缓存,从域名服务器上获取最新的域名解析,尤其是针对新注册的域名。 对于不同的操作系统刷新DNS的方法是不同,本文将会讲述在不同的操作系统类型下如何来刷新其DNS的缓存,进而获取到最新的域名解析。
linux操作系统

​Linux 刷新 DNS 缓存

在 CentOS linux 系统下,需要重启 nscd 服务来刷新DNS缓存,输入下面的命令:
[cc lang=”php”] $sudo /etc/init.d/nscd restart
or
$ service nscd restart
[/code]  
这样你本机的DNS缓存就被重新刷新并获取了最新的域名解析信息。
 
Mac OS X  系统刷新DNS缓存
对于苹果的Mac OS X 系统,需要在命令行窗口输入下面的命令:
[cc lang=”php”] lookupd -flushcache
or
dscacheutil -flushcache
[/code]  
Windows 系统刷新DNS缓存
打开DOS命令行窗口,输入命令:
[cc lang=”php”] ipconfig /flushdns
[/code] 输出:
[cc lang=”php”] C:\>ipconfig /flushdns
Windows IP Configuration
Successfully flushed the DNS Resolver Cache.
[/code]  

0 Comments

There are no comments yet

Leave a comment

Your email address will not be published.