Also, setting up rDNS can be a little confusing.
Let's say you have the subnet 2001:0470:1234:5678/64 associated with you.
You need to setup a rDNS zone for 8.7.6.5.4.3.2.1.0.7.4.0.1.0.0.2.ip6.arpa
eg for bind
Code:
zone "8.7.6.5.4.3.2.1.0.7.4.0.1.0.0.2.ip6.arpa" {
allow-query { any; };
type master;
file "2001:0470:1234:5678";
};The zone file would have normal headers as you'd do any DNS delegation. However the actual ptr record becomes long. eg if you wanted ....::3 (ie 2001:0470:1234:5678::3) to have a rDNS value then you'd need an entry such as
Code:
3.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 IN PTR your.dns.name.
IPv6 rDNS entries are long, but once you've worked out just what is being delegated to you then it's not too complicated
