ubuntu中 etc resolv.cnf中的127.0.1.1是什么地址


ubuntu中 etc resolv.cnf中的127.0.1.1是什么地址,为什么dns默认配置的是这个地址,请教

Linux dns

经典的KOF 12 years, 1 month ago

因为 ubuntu下有一个本地的dns服务叫做 dnsmasq ,它是由 NetworkManager 控制的


 ps -ef | grep dnsmasq

你就可以看到它监听的本地地址, --listen-address=127.0.1.1 (ubuntu12.04及之前的版本 是 127.0.0.1), 这个地址是一个本地回环地址

而你真实的dns服务器地址,是被这个服务管理维护着的


 local process -> local dnsmasq -> router -> ISP dns

功夫之王常威 answered 12 years, 1 month ago

Your Answer