Route 53 and Networking Flashcards
You want to route all traffic from Europe to EU-WEST1, What routing policy would you use and what location would you specify for your users?
Geolocation and set location to “Europe’. R53 allows you to identify countries or continents
What is a multi-value answer routing policy and how do you set one up
An MVA policy will return a list of healthy endpoints to the client (Browser). You create multiple record sets containing an endpoint with associated health checks. When the record set is queried only healthy endpoints are returned and the browser picks one at random.
Is the domain registrar the same as a DNS?
No
What are the steps to use a 3rd party domain with R53
- You need to create a hosted zone in R53 using your domain.
- Update your 3rd party name server records to point to the AWS name servers provided when you create the hosted zone.
You have an R53 record-set pointing to an instances IP as the endpoint. You need to change this to an ELB. What record type do you currently have and what is it changed to?
You currently have an A (or AAAA for IPv6) and you will need to change to an Alias
There are 4 common record types in R53. What are they and what do they do?
A: URL to IPv4
AAAA: URL to IPv6
CNAME: URL to URL
ALIAS: URL to AWS Resource
How do health checks relate to DNS Queries
Only healthy resources will be returned as a response to a DNS query. This enables failover routing. Health checks are mandatory for fail over R53 Policy
can health checks be integrated with Cloudwatch?
Yes
Why would you use a weighted routing policy?
To control the percentage of requests going to a specific endpoint. Helpful for:
- A/B Deployments
- Splitting traffic between regions
What is the default health check interval in R53 and roughly how many health checkers will check and endpoint?
One every 30 second interval per health check with approximately 15 health checks per end point.
By default how many health checks need to fail for an instance to be unhealthy? How many for it to become healthy?
3 for both
When would you use a latency routing policy?
When latency for users is a priority. Under this policy traffic is redirected to the server that has the least latency as evaluated in terms of the user to the designated region.
In a latency routing policy will traffic be directed to the closest region?
Not especially. The lowest latency will be used which may not be the closest region to the user
Does R53 support healthchecks?
Yes - Health checks can be configured to simulate common user requests
What are the 6 routing policies for R53
Simple, Multivalue, Geo-location, latency, failover, weighted.