Route 53 & DNS Flashcards
What is the AWS term for zones in Route 53
Hosted zones
What does the AWS term “recordset” refer to?
A set of DNS records
How many nameservers does Route 53 host a given zone on?
Four nameservers
What type of DNS records manage the delegation process by pointing to authoritative nameservers for a given domain?
NS records
What type of DNS records resolve DNS names to IPv6 addresses?
AAAA records
What type of DNS records resolve DNS names to IPv4 addresses?
A records
What does CNAME stand for, and what does this type of record do?
Canonical name. They allow hostname to hostname mappings.
How do you map a CNAME to an IP address?
You can’t. CNAME records cannot do this (common exam question)
What type of DNS record can you use to add arbitrary information to your zone?
A TXT record
What is a typical use of TXT records?
Proof that you manage a given domain, by getting you to add a predefined TXT record.
How many regions is Route 53 available in?
Trick question. Route 53 is a global service.
True or False: Public hosted zones are accessible from VPCs.
True.
True or False: in R53 you can associate private hosted zones with VPCs in other AWS accounts.
True.
True or False: You can only associate private hosted zones with VPCs in other AWS accounts using the CLI or API.
True.
True or False: Private hosted zones are accessible from any of your VPCs.
False. They are accessible only from VPCs that have an association with that private zone.
What must you do in order to enable access to a private hosted zone from a VPC?
Associate that VPC with the private hosted zone.
In the context of AWS, what is the main limitation of CNAME records?
They cannot be used on naked/apex records (eg. catagram.io).
What Route 53 record type allows mapping a naked/apex record to an A/AAAA record?
The ALIAS record.
True or False: you can use an ALIAS record to map an A record to an AAAA record.
False. The from/to types must be the same type.
True or False: ALIAS records are a standard DNS feature.
False. ALIAS records are only supported by Route 53.
What is the shorter interval for R53 health checkers?
10 seconds.
You are in the us-east-1 region and have configured a R53 health check. Where will the health checkers be located?
Health checkers are ALWAYS distributed globally.
This is to gain a comprehensive picture of a host’s reachability.
True or False: ALIAS records are only for mapping naked/apex names to AWS resources.
False. ALIAS records can map both normal and naked/apex names.
How many DNS records per hostname does Simple Routing support? How many values can each record have?
One record per hostname.
That record can have multiple values (eg. IP addresses).
What is the drawback of simple routing in Route 53?
It doesn’t support health checks.
The A/AAAA record will return all values (IP addresses) irrespective of the health of the underlying server/application.