如果有多块网卡,其中一个局域网网卡设置为dhcp时,如果安装了多事的resolvconf,它会将负责配置nameserver的resolv.conf文件清空。
最简单的办法就是在文件:
/etc/resolvconf/resolv.conf.d/head(或者base、tail这三个文件均可)
中加入所需的域名服务器:nameserver xxx.xxx.xxx.xxx
然后使用命令更新:resolvconf -u
如果联网的网卡具有静态ip,也可以修改/etc/network/interfaces文件,
在需要设置dns的网卡配置后面追加:
dns-nameservers xxx.xxx.xxx.xxx之类信息
resolv.conf设定DNS被重置解决办法:http://www.linuxdiyf.com/linux/16542.html
/etc/resolv.conf文件中的search项作用:http://www.linuxdiyf.com/linux/15443.html
Ubuntu12.04下resolv.conf重启机器后失效的问题解决:http://www.linuxdiyf.com/linux/14108.html
Ubuntu关于修改resolv.conf重启失效的问题:http://www.linuxdiyf.com/linux/12614.html
Linux下hosts,host.conf,resolv.conf的区别:http://www.linuxdiyf.com/linux/9720.html