Explain output of ipconfig /displaydns
Can you please tell me what each field of the Windows command
ipconfig /displaydns
means please?
The fields in the output of /displaydns
correspond to the fields of an actual DNS reply.
- In a DNS server's database, each piece of data is a "resource record".
- "Record name" is the name you query DNS for, and the records (addresses or something else) belong to that name.
- "Record type" is the type, displayed as a number - although more commonly they are referred to by their names, internally (in the DNS protocol) each has a number. Type 1 is "A" for "address", an IPv4 address. (IPv6 uses type 28, "AAAA", for an address four times as long.) "PTR", type 12, is a "pointer" to a hostname - most commonly used when mapping an IP address back to its name. "CNAME" is "canonical name".
- "Time To Live" is the time in seconds after which the cache entry must expire.
- "Data Length" appears to be the length in bytes - an IPv4 address is four bytes, IPv6 is sixteen bytes. For CNAME or PTR, Windows displays a static number (either 4 or 8, depending on your system) - this is actually the size of a memory address where the actual text is kept.
- The "answer" section of a DNS reply is the actual answer to the query, and "additional" contains information that will likely be needed to find the actual answer. For example, glue records.
- "
<type>
record" shows the actual value stored.
ipconfig /help
says that this "Displays the contents of the DNS Resolver Cache".
The DNS resolver is what turns a domain name, like superuser.com, into an IP address, 64.34.119.12 for superuser.com.
This can take a second or two, but because IP addresses change infrequently the resolver caches (aka "saves") these entries locally on your computer. This means that the next time you make a connection to superuser.com, your computer doesn't need to make an external request for the IP address and the conversion from domain name to IP address is done in milliseconds instead of seconds.
The /displaydns
option shows what is currently saved. This can be useful when a site seems not to be responding. It will be used more for technical types (and superusers) than average users.