0
How can I use DIG in one single command to get as much info on a domain name as possible,. including:
- Subdomans
- CNAME entries
- A Records
- TTL
Is this possible with one single command? How can you use dig to find out the most amount of information about a domain in one swift sweep?
Then perhaps I can rephrase --> how can you use dig to find out the most amount of information about a domain in one swift sweep? – coderama – 2012-11-12T10:17:46.617
@RD: If you can persuade the domain administrators to allow you to perform zone-transfers, you can use
dig
to obtain full zone-data. Otherwise you cannot list all records for a domain. – RedGrittyBrick – 2012-11-12T10:52:08.870So, what command can I type to get the most amount of info, without speaking to an admin? (FYI: for the purpose of this exercise, I am technically the admin, with root access to the server) – coderama – 2012-11-12T13:50:58.677
sudo cat /var/named/*
? – RedGrittyBrick – 2012-11-12T14:40:04.503