Chp 10: Route 53 Flashcards
1
Q
What is Route 53
A
- DNS
- also a Domain registrar
- only AWS service that is able to provide 100% availability
- how you route traffic for a domain
2
Q
Route 53 supports what record types?
A
- A: maps ip4 to hostname
- AAAA: maps ipv6 to hostname
- CNAME: maps a hostname to another hostname
- NS: name servers for the hosted zone
3
Q
What is a Route 53 Hosted Zone
A
- a container for records that define how to route traffic to a domain + its subdomain
4
Q
Route 53 – Records to TTL
A
- high ttl
2. low ttl
5
Q
describe high ttl
A
- less traffic on route 53
- - possibly outdated records
6
Q
describe low TTL
A
- more traffic on route 53
- records are outdated for less time
- easy to change new records
7
Q
What is an alias?
A
- points a hostname to an aws resource
- work for non root and root domain
- free of charge
- native health checks
8
Q
Route 53 alias records
A
- automatically recognizes changes in the resource IP addresses
- can be used for top node of a namespace
- always of type A/AAAA
- TTL cant be set
9
Q
Route 53 routing policies
A
- defines how route 53 responds to DNS queries
10
Q
What are the routing policy types
A
- simple
- weighted
- failover
- geolocation
- multi-value answer
- geoproximity
11
Q
Routing Policy: Simple
A
- Route traffic to a single resource
- can specify multiple values in the same record
- if multiple values are returned, a random one is chosen by the client
- when alias is enabled, specify only one aws resource
- cant be associated with health checks
12
Q
Routing Policy: Weighted
A
- controls the % of teh requests that go to each resource
- assign each record a relative weight. weights dont need to add up to 100
- dns must have the same name + type
- can be associated with health checks
- use case: load balancing between regions, testing new app version
- assign a record a weight of - to stop sending resources
- if all records have a weight of 0, then all records will be returned equally
13
Q
Routing Policy: Latency-based
A
- redirect resources that has the least latency
- latency is based on traffic between users and AWS region
- can be associated with health check
14
Q
Routing Policy: Health Checks ( failover)
A
- HTTP health checks are only for public resource
- health check: automated DNS failover
- health checks are integrated with cw metrics
15
Q
Routing Policy: Geolocation
A
- routing based on user location
- specify location by continent, country of by us state
should create a default record in case there is no match - use case: website localization, load balancing
- can be associated with health checks