使用Dnsmasq搭建本地dns服务器上网

本文由LinuxProbe.Com团队成员逄增宝整理发布,原文来自:Linux就该这么学。

small-dns

一、Dnsmasq安装
安装并启动Dnsmasq
yum install -y dnsmasq
service dnsmasq start
二、Dnsmasq配置
1、Dnsmasq的配置文件路径为:/etc/dnsmasq.conf
# ll -d /etc/dnsmasq.conf
-rw-r--r-- 1 root root 21237 Feb 23 00:17 /etc/dnsmasq.conf
2、编辑/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     //监听地址
3、修改/etc/resolv.conf
echo 'nameserver 127.0.0.1' > /etc/resolv.conf
4、创建resolv.dnsmasq.conf文件并添加上游dns服务器的地址
touch /etc/resolv.dnsmasq.conf
echo 'nameserver 119.29.29.29' > /etc/resolv.dnsmasq.conf
5、创建dnsmasq.hosts文件
cp /etc/hosts /etc/dnsmasq.hosts
echo 'addn-hosts=/etc/dnsmasq.hosts' >> /etc/dnsmasq.conf

提示:resolv.dnsmasq.conf中设置的是真正的Nameserver,可以用电信、联通等公共的DNS。

三、Dnsmasq启动
1、设置Dnsmasq开机启动并启动Dnsmasq服务:
chkconfig dnsmasq on
/etc/init.d/dnsmasq restart
2、netstat -tunlp|grep 53 查看Dnsmasq是否正常启动:
# 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
3、dig www.freehao123.com,第一次是没有缓存,所以时间是200多

Dnsmasq_01

4、第二次再次测试,因为已经有了缓存,所以查询时间已经变成了0.

Dnsmasq_2

本文地址:https://www.linuxprobe.com/dnsmasq-builds-local-dns.html编辑:逄增宝,审核员:张宏宇

本文原创地址:https://www.linuxprobe.com/dnsmasq-builds-local-dns.html编辑:清蒸github,审核员:暂无

为您推荐一些与本文相关的文章:

  • 5G时代网络安全挑战
  • 不要再乱用了,请选择最合适的Linux系统。
  • 《Linux高性能服务器编程》pdf电子书免费下载
  • Spring Tools 4.14.1 正式发布
  • 使用 MultiBootUSB 安装多个 Linux 版本
  • 论关系数据库的功能依赖性
  • 详解:Harbor镜像仓库清理
  • 你造吗,如何纯手工玩转 Nginx 日志!
  • 《Linux快速入门与实战》pdf电子书免费下载
  • 简单探讨区块链中的不可能三角
以上是使用Dnsmasq搭建本地dns服务器上网的全部内容。
THE END
分享
二维码
< <上一篇
下一篇>>