How can I find the CNAME record of www.google.es using the command dig , host and nslookup
How can I find the CNAME record of www.google.es using the command dig , host and nslookup
With nslookup you can do it like this:
Once you see the prompt >
Greetings. David.
With dig you can do it like this:
dig CNAME www.google.es
This option will perform the query to the DNS server configured on the computer from which the command is executed (localhost or 127.0.0.1)
However, to make the query to a specific server you can do it like this:
dig CNAME @ 1.1.1.1 www.google.es