我似乎在使用 bind9 解析我的网络域名时遇到了问题,我将使用域名 example.com,我可以连接到未在我的 bind9 区域文件中配置的任何其他网站,我知道这应该是问题所在,因为当我在 /etc/resolv 文件中输入名称服务器 8.8.8.8 时,example.com 没有任何问题
这是我的进步
我的 /etc/resolv.conf 文件
nameserver 192.168.1.112
Bind9 /etc/named.conf.options
options { directory "/var/cache/bind";
recursion yes;
allow-recursion {localnets; 192.168.1.0/16;};
forwarders {
192.168.1.1;
};
dnssec-enable yes;
dnssec-validation auto;
dnssec-lookaside auto;
auth-nxdomain yes;
listen-on { 192.168.1.112; 127.0.0.1; };
// listen-on-ipv6 { any; };
};
Bind9 /etc/bind/named.conf.local 文件
zone "example.com" IN { type master; file "/etc/bind/dbb.example.zone"; };
Bind9 /etc/bind/dbb.example.zone 文件
@ IN SOA ns1.example.com. [email protected]. (
1
3h
1w
3w
3h
)
IN NS ns1.example.com.
IN NS ns2.example.com
ns1.example.com. 221 IN A 93.184.216.34
ns2.example.com. 221 IN A 93.184.216.34
我得到的是运行挖掘 example.com | sed 's/;.*//g'是空的
但没有 sed 我收到
; <<>> DiG 9.11.3-1ubuntu1.1-Ubuntu <<>> example.com
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 38603
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 1
;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 4096
; COOKIE: 1f65dfc5c2809726eb48d6805b9ecd12c2d28287c22188a4 (good)
;; QUESTION SECTION:
;example.com. IN A
;; Query time: 0 msec
;; SERVER: 192.168.1.112#53
;; WHEN: Sun Sep 16 16:37:22 CDT 2018
;; MSG SIZE rcvd: 82
并且未配置名称服务器,例如:mocospace.com
dig mocospace.com
mocospace.com. 18830 IN A 208.95.216.41
;; Query time: 144 msec
;; SERVER: 192.168.1.112#53
;; WHEN: Sun Sep 16 16:39:46 CDT 2018
;; MSG SIZE rcvd: 310
答案1
首先,您的示例区域文件在 ns2 记录末尾缺少终止符“。”,必须修复此问题:
IN NS ns1.example.com.
IN NS ns2.example.com
其次,如果这是您的整个区域文件,那么您没有 A 记录,因此dig
即使没有失败,您的测试也不会包含任何结果。为了进行测试,您可以尝试以下操作:
IN NS ns1.example.com.
IN NS ns2.example.com.
IN A 127.0.0.1
更新区域文件时,请务必更新其顶部的序列号。然后重新加载您的名称服务器。