免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2130 | 回复: 2
打印 上一主题 下一主题

[DNS] 已经把防火墙关闭了客户端仍然不能通过DNS服务器解析 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-12-22 17:48 |只看该作者 |倒序浏览
root@localhost ~]# service named start
启动 named:                                               [确定]
[root@localhost ~]# service iptables stop
清除防火墙规则:                                           [确定]
把 chains 设置为 ACCEPT 策略:filter                       [确定]
正在卸载 Iiptables 模块:                                  [确定]
[root@localhost ~]# setenforce 0
setenforce: SELinux is disabled
[root@localhost ~]#

下面是/var/named/chroot/etc/named.conf文件:

options {
        listen-on port 53 { any; };
        listen-on-v6 port 53 { ::1; };
        directory         "/var/named";
        dump-file         "/var/named/data/cache_dump.db";
        statistics-file "/var/named/data/named_stats.txt";
        memstatistics-file "/var/named/data/named_mem_stats.txt";

        // Those options should be used carefully because they disable port
        // randomization
        // query-source    port 53;       
        // query-source-v6 port 53;

        allow-query     { any; };
        allow-query-cache { localhost; };
       forwarders  {202.103.24.68;};
       forward only;
};
logging {
        channel default_debug {
                file "data/named.run";
                severity dynamic;
        };
};
view localhost_resolver {
        match-clients            { any; };
        match-destinations { any; };
        recursion yes;
        include "/etc/named.rfc1912.zones";
};

论坛徽章:
0
2 [报告]
发表于 2012-12-22 17:55 |只看该作者

        //allow-query-cache { localhost; };
        recursion yes;

难道是这里????

论坛徽章:
0
3 [报告]
发表于 2012-12-23 08:22 |只看该作者
是想做成缓存DNS吗,就是用用户通过它解析任何域名?

allow-query-cache { localhost; };   //改一下这行,让用户有权查询CACHE
forwarders  {202.103.24.68;};       //删掉这行
forward only;                                 // 删掉这行

改成:
recursion yes;                        
allow-query-cache { any; };
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP