Provide access to internal DNS using DiG
I've written a quick bash script to create a csv file from the output of DiG: #!/bin/bash echo "hostname,TTL,record_class,record_type,ip_address" > dns.dump.raw; dig mydomain.com axfr >> dns.dump.raw; sed -i '/unused/d' dns.dump.raw; sed -i 's/\t/,/g...