9.5.2.2.2. Solution 2
The second is to delegate at the
fourth octet.
That's even nastier than the /8 delegation we just showed you.
You'll need at least a couple of NS records per IP
addressin the file
db.192.253.254, like this:
1.254.253.192.in-addr.arpa. 86400 IN NS ns1.foo.com.
1.254.253.192.in-addr.arpa. 86400 IN NS ns2.foo.com.
2.254.253.192.in-addr.arpa. 86400 IN NS ns1.foo.com.
2.254.253.192.in-addr.arpa. 86400 IN NS ns2.foo.com.
...
65.254.253.192.in-addr.arpa. 86400 IN NS relay.bar.com.
65.254.253.192.in-addr.arpa. 86400 IN NS gw.bar.com.
66.254.253.192.in-addr.arpa. 86400 IN NS relay.bar.com.
66.254.253.192.in-addr.arpa. 86400 IN NS gw.bar.com.
...
129.254.253.192.in-addr.arpa. 86400 IN NS mail.baz.com.
129.254.253.192.in-addr.arpa. 86400 IN NS www.baz.com.
130.254.253.192.in-addr.arpa. 86400 IN NS mail.baz.com.
130.254.253.192.in-addr.arpa. 86400 IN NS www.baz.com.
and so on, all the way down to
254.254.253.192.in-addr.arpa.
You can pare that down substantially by using $GENERATE:
$GENERATE 0-63 $.254.253.192.in-addr.arpa 86400 IN NS ns1.foo.com.
$GENERATE 0-63 $.254.253.192.in-addr.arpa 86400 IN NS ns2.foo.com.
$GENERATE 64-127 $.254.253.192.in-addr.arpa. 86400 IN NS relay.bar.com.
$GENERATE 64-127 $.254.253.192.in-addr.arpa. 86400 IN NS gw.bar.com.
$GENERATE 128-191 $.254.253.192.in-addr.arpa. 86400 IN NS mail.baz.com.
$GENERATE 128-191 $.254.253.192.in-addr.arpa. 86400 IN NS www.baz.com.
Of course, in
ns1.foo.com's
named.conf, you'd also expect to see:
zone "1.254.253.192.in-addr.arpa" {
type master;
file "db.192.253.254.1";
};
zone "2.254.253.192.in-addr.arpa" {
type master;
file "db.192.253.254.2";
};
Or, if
ns1.foo.com were
running BIND 4, you'd expect to see these directives in
named.boot:
primary 1.254.253.192.in-addr.arpa db.192.253.254.1
primary 2.254.253.192.in-addr.arpa db.192.253.254.2
and in
db.192.253.254.1, just the one PTR record:
$TTL 1d
@ IN SOA ns1.foo.com. root.ns1.foo.com. (
1 ; Serial
3h ; Refresh
1h ; Retry
1w ; Expire
1h ; Negative caching TTL
IN NS ns1.foo.com.
IN NS ns2.foo.com.
IN PTR thereitis.foo.com.
Notice that the PTR record is attached to the zone's domain
name since the zone's domain name corresponds to just one IP
address. Now, when a
254.253.192.in-addr.arpa name server
receives a query for the PTR record for
1.254.253.192.in-addr.arpa, it refers
the querier to
ns1.foo.com
and
ns2.foo.com, which
respond with the one PTR record in the zone.