标签:
导读 | 搭建一个属于自己的本地DNS服务器很有必要,利用Dnsmasq来搭建一个属于自己的本地DNS服务器,享受更干净无污染、更智能快速和没有广告干扰的DNS解析服务。 |
yum install -y dnsmasq service dnsmasq start
# ll -d /etc/dnsmasq.conf -rw-r--r-- 1 root root 21237 Feb 23 00:17 /etc/dnsmasq.conf
resolv-file=/etc/resolv.dnsmasq.conf //dnsmasq 会从这个文件中寻找上游dns服务器 strict-order //去掉前面的# addn-hosts=/etc/dnsmasq.hosts //在这个目里面添加记录 listen-address=127.0.0.1,192.168.1.123 //监听地址
echo ‘nameserver 127.0.0.1‘ > /etc/resolv.conf
touch /etc/resolv.dnsmasq.conf echo ‘nameserver 119.29.29.29‘ > /etc/resolv.dnsmasq.conf
cp /etc/hosts /etc/dnsmasq.hosts echo ‘addn-hosts=/etc/dnsmasq.hosts‘ >> /etc/dnsmasq.conf
提示:resolv.dnsmasq.conf中设置的是真正的Nameserver,可以用电信、联通等公共的DNS。
chkconfig dnsmasq on /etc/init.d/dnsmasq restart
# netstat -tlunp|grep 53 tcp 0 0 0.0.0.0:53 0.0.0.0:* LISTEN 2491/dnsmasq tcp 0 0 :::53 :::* LISTEN 2491/dnsmasq udp 0 0 0.0.0.0:53 0.0.0.0:* 2491/dnsmasq udp 0 0 :::53 :::* 2491/dnsmasq
本文转载自:http://www.linuxprobe.com/dnsmasq-builds-local-dns.html
更多Linux干货请访问:http://www.linuxprobe.com/
标签:
原文地址:http://www.cnblogs.com/probemark/p/5901595.html