使用RFC 1918地址的BIND

我有多个BIND服务器,一些是parsing器,一些是authorative DNS服务器。

查询10.xxx IP的反向指针logging的parsing器时,查询失败。 我已经在auth DNS服务器上添加了这些反向指针logging。 现在,据我了解,我需要告诉我的BINDparsing器问我的BIND DNS服务器与这个IP范围有关的logging(否则他们将查询根服务器,并失败)。

我怎样才能configuration这个?

谢谢。

您应该在parsing器上configuration转发区域并将其指向您的权威服务器。 该configuration可能会沿着以下示例的行:

// forward queries for 10.0.0.0/24 to the name servers at // 192.168.1.1 and 192.168.1.2 zone "0.0.10.in-addr.arpa" in { type forward; forwarders { 192.168.1.1; 192.168.1.2; }; };