Route 53 Flashcards
1
Q
Route 53
A
- authoritative DNS - customer (you) can update DNS records
- domain registrar
- health checks
- 100% availability SLA
2
Q
TLD
A
top level domain (.com, .gov)
3
Q
SLD
A
second level domain - amazon.com
4
Q
How does DNS work?
A
5
Q
How does DNS work?
A
6
Q
DNS record types
A
- A - address
- AAAA - A record for IPv6
- CNAME - maps hostname to a hostname
- can’t create a CNAME record for top node of DNS namespace
- i.e. example.com cname record not allowed but www.example.com is ok
- Alias - map hostname to aws resource
- works for BOTH root and non-root domain
- free of charge
- cannot set TTL
- always an A record
- CANNOT alias an EC2 DNS name
- can’t create a CNAME record for top node of DNS namespace
- NS - name server for the hosted zone
7
Q
DNS TTL
A
- cached at DNS resolvers
- high ttl - less traffic on route53, possibly outdated record on client
- low ttl - more traffic on route53, easy to change records
- except for alias records, TTL is mandatory for each DNS record
8
Q
DNS hosted zones
A
- public - contains records that specify how to route traffic on internet
- private - only within VPC can names be resolved
9
Q
Simple routing policy
A
- typically, route traffic to a single resource
- can specify multiple values in same record returned to client. client will randomly choose one
- when alias enabled, specify only ONE aws resource
- no health checks
10
Q
weighted routing policy
A
- control % of requests go to a specific resource based on weights
- weights don’t add to 100. just a percentage of sum of all weights
- 0 value for all weights? - all records will be chosen equally
- can do health cases
- use case: load balancing
11
Q
failover routing policy
A
switch dns record to point to a separate instance when health check fails
12
Q
latency based routing policy
A
- redirect to resource that has least latency
- based on traffic between users and aws regions
- supports health checks (has failover capability)
13
Q
geolocation based routing policy
A
- different than latency based! us toe users actual location
- health check support
14
Q
geoproximity based routing policy
A
- ability to shift more traffic to resources based on a defined bias
- to change size of geographic region, specify bias values
- higher bias = more traffic to resource
- lower bias = less traffic to resource
- must use (advanced) traffic flow feature
15
Q
multi-value based routing policy
A
- route 53 returns multiple values/resources
- up to 8 healthy records for each multi-value query
- NOT a substitute for having an ELB
- multi-value is ‘client-side’ load balancing
- health check support