我目前有一个 IP 地址块,从 xxx.xxx.xxx.128/25
这是我当前的 rDNS 设置:
$TTL 12h
$ORIGIN 128/25.xxx.xxx.xxx.IN-ADDR.ARPA.
@ IN SOA ns1.domain.com. hostmaster.domain.com. (
2011092003 ; serial number
2h ; refresh
1h ; retry
2w ; expire
1h ) ; negative TTL
IN NS ns1.domain.com.
IN NS ns2.domain.com.
130 IN PTR mail.otherdomain.com.
它似乎无法正常工作。我在 named.conf 中进行了如下设置:
zone "128/25.xxx.xxx.xxx.in-addr.arpa" {
type master;
file "master/128-25.xxx.xxx.xxx.in-addr.arpa";
};
答案1
RFC2317 委派不是典型的区域,客户端不知道如何在查找过程中找到它们;在 /24 区域中需要有一个“委派”(它不是真正的委派,因为它实际上不在 DNS 层次结构中起作用),通过区域将 /25 中的每个地址发送到您的名称CNAME
服务器128/25.x.x.x.in-addr-arpa.
。
/24 区域中的情况如下:
128/25 IN NS your.server.here.
128 IN CNAME 128.128/25
129 IN CNAME 129.128/25
...
254 IN CNAME 254.128/25
255 IN CNAME 255.128/25