环境:
Ubuntu 14.04 64bits
cat /etc/resolv.conf
包含了本地名字服务器主机和IP地址,不过在我的PC上,显示如下:
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 127.0.1.1
这个看起来像localhost的地址究竟是什么意思?
因为 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