DNS Flashcards
What are the three components of DNS?
Clients
Recursive Servers
Authoritative Servers
What is a resource record?
Maps a name to some data, and has some bookkeeping data on them.
What does an A record contain?
A IPv4 address
What does an AAAA record contain?
A IPv6 address
How are domain name questions resolved?
Clients ask recursive servers. Recursive servers start at the root, and iterate downwards asking for the nameserver of the next label down, until they can finally ask the last nameserver for the required resource record.
How does DNS caching work?
At each stage, everyone caches the data they get. Each record they receive has a time to live, once this expires they discard the record.
What is an authoritative server?
For a given domain, there will be one or more nameservers specified in some zone.
Each of these specified nameservers is authoritative for the specified domain.
What is an RR set?
The set of all Resource Records of a given record type for a given name
What are DNS clients also known as?
Resolvers
What are authoritative servers also known as?
Iterative servers
What are recusive servers also known as?
Caching servers