Is there a way to get a complete list of A and CNAME records on my BIND DNS server?

I have access to the zone files. But on my server there are lots of zone files, and it'd take too long to go over all of them by hand. Is there a command that lists this info or will I have to write a script myself?

link|improve this question

50% accept rate
O noes! Not a script! – womble May 1 '09 at 23:59
feedback

3 Answers

up vote 3 down vote accepted

Rather than use grep on all of the zone files, use:

% rndc dumpdb -zones

This will create a dump of the server's authoritative data called cache_dump.db, probably in /var/named/data (or similar).

This file is easier to parse than the original zone files because every line starts with the domain name to which it applies. The raw zone files are probably abbreviated.

link|improve this answer
Perfect, that's exactly what I needed! Though the file was named named_dump.db in my case. Thanks :) – Christopher Nadeau May 2 '09 at 16:58
feedback

From your var/named/data (or equivalent directory) grep through the db.* files with an appropriate regular expression, something like:

grep '\(.  *A   *[0-9][0-9]*\)\|\(..*CNAME..*\)' db.*

Note that the final 'db.*` globs all the db files. Repeat for every directory you have zone files in.

link|improve this answer
1  
That's what the find command is for! find /var/named/data -name 'db.*' -print0 | xargs -0 grep '...' – Chris Jester-Young May 1 '09 at 23:58
feedback

for i in my domain list; do dig -t axfr $i @localhost; done

Have to allow zone transfers from localhost first.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.