Ubuntu 15.04直接修改/etc/resolv.conf,添加DNS重启后配置丢失。
正确方法:
1.#vim /etc/network/interfaces,文件最后添加“dns-nameservers 223.5.5.5”
重启systemctl restart networking.service,测试OK
2.#vim /etc/resolvconf/resolv.conf.d/base(文件默认为空)
nameserver 223.5.5.5
nameserver 223.6.6.6
#resolvconf -u (更新改动至resolv.conf)
#more /etc/resolv.conf
# 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 223.5.5.5
nameserver 223.6.6.6
不需要重启网卡/系统,测试OK,重启系统后OK。
linux中各种因为DNS问题引起的慢的情况:http://www.linuxdiyf.com/linux/15819.html
ubuntu/debian禁用ipv6模块后能提高DNS解析的速度:http://www.linuxdiyf.com/linux/14264.html
ubuntu 14.04 64 bit上开启nscd服务缓存加速及清除dns缓存:http://www.linuxdiyf.com/linux/13923.html
启用Ubuntu本地DNS缓存功能提升浏览速度:http://www.linuxdiyf.com/linux/9201.html
在Ubuntu 14.04 64bit中永久添加DNS的方法:http://www.linuxdiyf.com/linux/13922.html