Bind

BIND9 如何為 2 個不同的域提供 2 個反向解析

  • May 7, 2022

我有一台伺服器 Bind9 和 2 個不同的域。

我想對每個域進行反向解析。

我在下面嘗試了此配置,但出現以下錯誤named-checkconf

/etc/bind/named.conf:30: zone '10.0.10.in-addr.arpa': already exists previous definition:/etc/bind/named.conf:19

我的配置:

zone "ngux.org" {
   type master;
   file "/etc/bind/db.ngux.org";
   allow-transfer { 10.0.10.99; };
};
zone "10.0.10.in-addr.arpa" {
   type master;
   file "/etc/bind/db.ngux.org.rev";
   allow-transfer { 10.0.10.99; };
};
zone "ldap.ngux.lan" {
   type master;
   file "/etc/bind/db.ldap.ngux.lan";
   allow-transfer { 10.0.10.99; };
};
zone "10.0.10.in-addr.arpa" {
   type master;
   file "/etc/bind/db.ldap.ngux.lan.rev";
   allow-transfer { 10.0.10.99; };
};

我該怎麼辦 ?2 個反向地址只有一個文件?

謝謝。

反向解析不綁定到正向 DNS 條目。

您需要一個子網區域。ngux.org並且ngux.lan都可以寫入同一個反向區域。只需刪除第二個反向區域即可達到您想要的效果。

引用自:https://serverfault.com/questions/1100384