0

我正在使用 Bind9 设置 DNS,但无法解析反向 DNS。

这是我的named.conf.local文件:

zone "alice-abm.id"  { type master; file "/etc/bind/db.alice-abm.id"; };
zone "190.193.116.in-addr.arpa" { type master; file "/etc/bind/db.190.193.116.in-addr.arpa"; };

这是我的db.alice-abm.id文件:

;
; BIND data file for local loopback interface
;
$TTL    604800
@       IN      SOA     alice-abm.id. admin.alice-abm.id. (
                        2021112801      ; Serial
                         604800         ; Refresh
                          86400         ; Retry
                        2419200         ; Expire
                         604800 )       ; Negative Cache TTL
;
@       IN      NS      ns1.alice-abm.id.
@       IN      NS      ns2.alice-abm.id.
@       IN      A       116.193.190.67
ns1     IN      A       116.193.190.67
ns2     IN      A       116.193.190.67
www     IN      CNAME   @ ;Bisa juga dengan alice-abm.id

这是我的db.190.193.116.in-addr.arpa文件:

;
; BIND data file for local loopback interface
;
$TTL    604800
@       IN      SOA     alice-abm.id. admin.alice-abm.id. (
                        20211128003     ; Serial
                         604800         ; Refresh
                          86400         ; Retry
                        2419200         ; Expire
                         604800 )       ; Negative Cache TTL
;
$ORIGIN 190.193.116.in-addr.arpa.
@       IN      NS      ns1.alice-abm.id.
@       IN      NS      ns2.alice-abm.id.
@       IN      A       116.193.190.67
67      IN      PTR     alice-abm.id.

当我尝试 nslookup IP 地址时:

$ nslookup 116.193.190.67

那是返回错误:

** server can't find 67.190.193.116.in-addr.arpa: NXDOMAIN

我做错了什么吗?

请帮忙,谢谢。

4

1 回答 1

0

我会看你的日志,但是序列号应该是无符号的32位,而20211128003远远超过它。我认为您的意思是 2021112803。该区域可能未加载。

除非您完全控制 /24,否则我会将区域设为 67.190.193.116.in-addr.arpa

于 2021-11-28T15:35:25.727 回答