AWS Route 53 Flashcards
What is Route 53?
Route 53 is a Domain Name Service (DNS) that allows domain registration, management of record sets, complex traffic flows, health checks, and resolving VPC traffic outside of AWS.
What is a Hosted Zone in Route 53?
A Hosted Zone is a container for record sets, scoped to route traffic for a specific domain or subdomains.
What are the types of Hosted Zones?
Public Hosted Zone: Handles inbound traffic from the internet. Private Hosted Zone: Handles traffic within an Amazon VPC.
What are the action types for modifying record sets in Route 53?
CREATE: Creates a new record set. DELETE: Deletes an existing record set. UPSERT: Creates or updates a record set.
What is an A Record in Route 53?
Maps a domain name to an IPv4 address. Example: example.com -> 192.0.2.1
What is a CNAME Record in Route 53?
Maps a domain name to another domain name (alias). Example: www.example.com -> example.com
What is an MX Record in Route 53?
Specifies the mail servers responsible for receiving email for a domain. Example: example.com -> mail.example.com
What is an ALIAS Record in Route 53?
A Route 53-specific type similar to CNAME, used at the root domain level to point to AWS resources. Example: example.com -> ALIAS to d123cf.cloudfront.net
What are the key characteristics of Traffic Flow in Route 53?
A visual editor for creating routing configurations. Supports versioning. Costs $50 per policy per month. Routing rules include Weighted, Failover, Geolocation, Latency, Multivalue Answer, and Geoproximity.
What is a Simple Routing Policy in Route 53?
The default policy; one record with multiple IP addresses. Route 53 returns all IP addresses to the DNS resolver in random order.
What is a Weighted Routing Policy in Route 53?
Distributes traffic across multiple resources based on assigned weights.
What is a Failover Routing Policy in Route 53?
Creates an active/passive setup with a primary site and a secondary recovery site. Traffic is routed to the primary endpoint under normal conditions and redirected to the secondary endpoint if the primary is unhealthy.
What is a Geolocation Routing Policy in Route 53?
Routes traffic based on the geographic location of the DNS request.
What is a Latency Routing Policy in Route 53?
Routes traffic to the resource that provides the lowest latency, directing traffic to the AWS region with the lowest latency for the user.
What is a Multivalue Answer Routing Policy in Route 53?
Returns multiple IP addresses to improve redundancy and load distribution. Up to eight values are returned, with health checks performed.