DNS Facts Flashcards
DNS
domain name system
FQDN
fully qualified domain name is a domain name that spells out each level of the hierarchy. For example, www.testout.com. is a FQDN. The following table describes each section of the FQDN.
Root Level
The highest level in the DNS hierarchy. The DNS root level is represented by a period at the end of the of the FQDN.
When typing the FQDN into a web browser, the period is typically not included. The period is mainly used when defining DNS records on the server.
Top-level domain (TLD)
The next highest level in the DNS hierarchy. TLDs have extensions such as com, edu, gov, org, etc.
Domain name
The name unique to each organization. The DNS domain is referred to as distributed because this portion is unique to each organization or group.
Each organization is responsible for maintaining its own namespace.
Hostname
This is the name of specific hosts on the network.
On an internal network, an example of a hostname could be server1 or server2.
On the internet, this is typically www.
On a webserver, www may be the name of the root folder that all website files are stored in.
DNS Process
When a web browser sends a DNS request to discover the IP address of the requested site, the name resolution process that occurs involves multiple servers. The following table describes each of these servers:
Root server
Root DNS servers hold information for the root zone ( . ). Root servers answer name resolution requests by supplying the address of the corresponding top-level DNS server.
While there are only 13 root servers, there are multiple copies of these servers spread out across the globe that are mapped to the same IP addresses to handle all DNSrequests.
Top-level domain (TLD) server
The TLD servers contain the information for all websites that share a common domain extension, such as .com or .org.
Authoritative name server
This is the server that contains the DNS information for a site or domain such as testout.com. The server is authoritative because it doesn’t have to ask any other DNS server for help; it holds the information already.
There are usually two authoritative DNS servers per domain.
Recursive server
The recursive server handles the DNS name resolution process.
HOSTS file
The HOSTS file is a local text file on each computer that maps hostnames to IP addresses. The HOSTS file was used previously for smaller networks but is too complicated to use on networks or the internet.
Even though the HOSTS file is rarely used today, it is still the first place that a computer looks during the name resolution process.
A (host address)
Maps an IPv4 (32-bit) DNS host name to an IP address. This is the most common resource record type.
AAAA (quad-A)
Maps an IPv6 (128-bit) DNS host name to an IP address.
Pointer (PTR)
Maps an IP address to a host name (by pointing to an A record).