I've currently got a block of IPs that go from xxx.xxx.xxx.128/25
Here's my current rDNS setup:
$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.
It doesn't seem to be working properly. I've got it setup in named.conf like so:
zone "128/25.xxx.xxx.xxx.in-addr.arpa" {
type master;
file "master/128-25.xxx.xxx.xxx.in-addr.arpa";
};
RFC2317 delegations aren't typical zones, clients don't know how to find them during a lookup; there will need to be a "delegation" (it's not a real delegation, as it's not really working inside the hierarchy of DNS) in the zone for the /24 sending every address in the /25 to your name server via a
CNAME
to the128/25.x.x.x.in-addr-arpa.
zone.Something like this in the /24's zone: