美文网首页
使用dnsmasq搭建本地dns服务器

使用dnsmasq搭建本地dns服务器

作者: 阿汤哥_8d27 | 来源:发表于2021-05-09 14:04 被阅读0次

    一、dnsmasq安装
    安装并启动dnsmasq

    yum install -y dnsmasq
    chkconfig dnsmasq on
    service dnsmasq start 
    

    二、dnsmasq配置
    1、dnsmasq的配置文件路径为:/etc/dnsmasq.conf

    # ls -l /etc/dnsmasq.conf 
    -rw-r--r-- 1 root root 21237 Feb 23 00:17 /etc/dnsmasq.conf
    

    2、编辑/etc/dnsmasq.conf

    addn-hosts=/mysh/etc/dnsmasq.hosts         //在这个目里面添加记录
    

    三、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        
    

    本文转载自:http://www.linuxprobe.com/dnsmasq-builds-local-dns.html

    相关文章

      网友评论

          本文标题:使用dnsmasq搭建本地dns服务器

          本文链接:https://www.haomeiwen.com/subject/nvkidltx.html