在通常情况下,我们在Ubuntu系统中可以通过resolv.conf来设置DNS地址。但重启后,resolv.conf中的地址仍然会返回为原来的内容。
这是因为resolv.conf文件其实是一个Link文件,如图:
在Ubuntu中有一个 resolvconf 的服务,这个服务用来控制/etc/resolv.conf的内容。所以一旦我们重启了系统或者该服务,那么/etc/resolv.conf文件中的内容将被还原为原来的内容。所以直接修改/etc/resolv.conf并不能解决这个问题。
解决办法:
1.在网卡的配置文件中定义DNS地址:
iface eth0 inet static
address 192.168.0.10
netmask 255.255.255.0
gateway 192.168.0.1
dns-nameserver 8.8.8.8 8.8.4.4
2.修改resolvconf服务的配置文件:
vim /etc/resolvconf/resolv.conf.d/base
在其中添加或修改:
nameserver 8.8.8.88.8.4.4
Linux下hosts,host.conf,resolv.conf的区别:http://www.linuxdiyf.com/linux/9720.html
解决Ubuntu重启时resolv.conf被重写问题:http://www.linuxdiyf.com/linux/4950.html
Ubuntu修改resolv.conf:http://www.linuxdiyf.com/linux/3886.html
AIX /etc/resolv.conf文件详解:http://www.linuxdiyf.com/linux/2307.html
自己动手解决了Ubuntu Kylin关机后自动重启:http://www.linuxdiyf.com/linux/10008.html