The Bits and Bytes of Computer Networking 4 Flashcards
What does DNS stand for and what does it do?
Domain Name System - resolves web addresses into IP addresses. (translates human readable addresses into computer readable addresses)
What is name resolution?
The process of using DNS to translate a domain name into an IP address.
What 4 things need to be specifically configured on a network?
1 the IP address,
2 the subnet mask,
3 the gateway for a host,
4 the DNS server.
What are the 5 primary types of DNS servers?
1 Caching name servers 2 Recursive name servers 3 Root name servers 4 TLD name servers 5 Authoritative name servers
What is the role of a caching name server?
Stores domain name look ups for a certain amount of time (so name resolution doesn’t have to occur every time for frequently used websites).
What is the role of a recursive name server?
Perform full DNS resolution requests.
What are the 3 steps of a full DNS look-up?
1 Contact a root name server. This will direct to the correct TLD name server.
2 TLD name server directs to the correct authoritative name server.
3 The ANS will provide the IP address.
What part of a domain does the TLD server deal with?
The top level domain - last part of a domain - .com, .org etc.
What part of a domain does the Authoritative Name Server Deal with, and who is generally responsible for this server?
The last two parts of the domain - weather.com, youtube.com. Usually controlled by one organization, the one who owns that domain.
What is Anycast?
A routing technique in which a single destination IP address is shared by devices (generally servers) in multiple locations. Routers direct packets addressed to this destination to the device nearest the sender.
Which transport layer protocol does DNS use?
UDP.
What is a DNS record?
Instructions that live in authoritative DNS servers and provide information about a domain including what IP address is associated with that domain and how to handle requests for that domain. These records consist of a series of text files.
What is the most common form of DNS record? Describe how it is.
A record - directs a certain domain name to an IPv4 address, can have multiple IP addresses per domain.
What is DNS round robin and what is a benefit of it?
When a record has multiple IP addresses for one domain name, it iterates through the list one by one - this balances traffic over multiple IP addresses.
What is the difference between an A record and a Quad A record?
A record = IPv4 addresses
Quad A record = IPv6 addresses.
What does a CNAME record do?
Directs one domain name to another, eg directs youtube.com to www.youtube.com.
What do the following service records do? 1 MX records. 2 SRV records. 3 TXT records. 4 NS records. 5 SOA records.
1 MX records - mail exchange, delivers email to the correct service.
2 SRV records - service, used to define the location of specific services.
3 TXT records - text, used to communicate info about network configuration etc.
4 NS records - Name server, indicates which DNS server is authoritative for that domain (i.e. which server contains the actual DNS records).
5 SOA records - Start of Authority, record stores important information about a domain or zone such as the email address of the administrator, when the domain was last updated, etc.
What are the 3 parts of a domain, and what are the 3 combined called?
Top Level Domain - last part, .com etc.
Domain - middle bit.
Subdomain/ host name - the part before the domain name, can have multiple parts.
FQDN - Fully Qualified Domain Name.