DNS报错无法解析,无法解决(请各位帮忙)

发布于 2022-10-03 18:48:31 字数 3978 浏览 11 评论 0

为 什么我的DNS会出现错误,以下是我的配置文件,各位帮忙看一下
named.conf配置文件:
// generated by named-bootconf.pl

options {
        directory "/var/named";
        /*
         * If there is a firewall between you and nameservers you want
         * to talk to, you might need to uncomment the query-source
         * directive below.  Previous versions of BIND always asked
         * questions using port 53, but BIND 8.1 uses an unprivileged
         * port by default.
         */
        // query-source address * port 53;
};

//
// a caching only nameserver config
//
controls {
        inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};
zone "." IN {
        type hint;
        file "named.ca";
};

zone "localhost" IN {
        type master;
        file "localhost.zone";
        allow-update { none; };
};

zone "0.0.127.in-addr.arpa" IN {
        type master;
        file "named.local";
        allow-update { none; };
};
zone "jamond.net"{
      type master;
      file "jamond.net.zone";
};
zone "168.168.192.in-addr.arpa"{
      type master;
      file "192.168.168.in-addr.zone";
};
include "/etc/rndc.key";
正向解析文件:

$ttl 86400
@         IN      SOA  ns.jamond.net. root.ns.jamond.net.
(         
                        1053891162
                        3H
                        15M
                        1W
                        1D)
           IN         NS            ns.jamond.net.
redhat     IN         A  192.168.168.52
反向解析文件:

$ttl 86400
@        IN        SOA     ns.jamond.net. root.ns.jamond.net.
                 (1053892104
                  1053892104
                  3H
                  15M
                  1W
                  1D)
52          IN  PTR    redhat.jamond.net.
配置好后用NSLOOKUP在本机测试时就说找不到 提示server can't  find redhat.jamond.net:SERFALL

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

黄昏下泛黄的笔记 2022-10-10 18:48:31

怎么每人回答我的问题啊!  斑主求救!!!!!

挽梦忆笙歌 2022-10-10 18:48:31

贴出你的/var/log/messages的内容。
你自己可以查看启动bind的时候messages有什么提示。
严格注意bind的所有配置文件的格式。注意空格和tab键的使用。
谢谢!

烂柯人 2022-10-10 18:48:31

ps -aux |grep named 找到进程的PID,
kill -9 PID
再重启service named start

终止放荡 2022-10-10 18:48:31

每次启动都没有报什么错误信息,只是在本机测试的时候,nslookup ,解析不到地址  server can't  find redhat.jamond.net:SERFALL

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文