How to enable IPv6 glue records (AAAA) in PowerDNS

Posted by aef on Server Fault See other posts from Server Fault or by aef
Published on 2012-11-25T19:48:37Z Indexed on 2012/11/25 23:08 UTC
Read the original article Hit count: 250

Filed under:
|
|
|

I'm running a PowerDNS 3.1 on a Debian Wheezy Beta 4 system. The zone data is accessed through a PostgreSQL database, the server answers to both IPv4 and IPv6 queries.

If the DNS-Server knows the A record for one of the name servers referenced by NS records on a zone, it automatically return these A records as additional information to the response on an NS query for that zone. Now even if it knows the AAAA record for one of the name servers of the NS records, it currently does never return an AAAA record as additional information.

How can I enable this? Or is there anything I could be doing wrong?

Output of dig @ns.mydomain.tld NS mydomain.tld:

;; QUESTION SECTION:
;mydomain.tld.                      IN      NS

;; ANSWER SECTION:
mydomain.tld.               86400   IN      NS      ns3.nsprovider.de.
mydomain.tld.               86400   IN      NS      ns2.nsprovider.de.
mydomain.tld.               86400   IN      NS      ns.mydomain.tld.
mydomain.tld.               86400   IN      NS      ns.nsprovider.de.

;; ADDITIONAL SECTION:
ns2.nsprovider.de.          86400   IN      A       1.2.3.1
ns.nsprovider.de.           86400   IN      A       1.2.3.2
ns.mydomain.tld.            600     IN      A       192.0.2.194
ns3.nsprovider.de.          86400   IN      A       1.2.3.3

Output of dig @ns.mydomain.tld A ns.mydomain.tld:

;; QUESTION SECTION:
;ns.mydomain.tld.           IN      A

;; ANSWER SECTION:
ns.mydomain.tld.    600     IN      A       192.0.2.194

Output of dig @ns.mydomain.tld AAAA ns.mydomain.tld:

;; QUESTION SECTION:
;ns.mydomain.tld.           IN      AAAA

;; ANSWER SECTION:
ns.mydomain.tld.    86400   IN      AAAA    2001:db8:100:3022:1::3

© Server Fault or respective owner

Related posts about dns

Related posts about debian