route 53 Flashcards

1
Q

what is route 53

A

Amazon Route 53 provides highly available and scalable Domain Name System (DNS), domain name registration, and health-checking web services.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What can I do with Amazon Route 53?

A
  • -create and manage public DNS records;
  • -answers requests to translate specific domain names like into their corresponding IP addresses.
  • -offers health checks to monitor the health and performance of your application as well as your web servers and other resources.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

CreateHostedZone API

A

create a hosted zone that can store DNS records for your domain. Upon creating the hosted zone, you receive four Route 53 name servers across four different Top-leveldomains(TLDs).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

domain vs hosted Zone?

A

domain is a general DNS concept like amazon.com
hosted zone is an Amazon Route 53 concept. is analogous to a trafitional DNS zone file; it represents a collection of records that can ne managed together, belonging to a single parent domain name. all resource records sets within a hosted zone must have the same suffix like www.aws.amazon.com, www.amazon.com.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

I have subscribed for Amazon Route 53 but when I try to use the service it says “The AWS Access Key ID needs a subscription for the service”

A

When you sign up for a new AWS service, it can take up to 24 hours in some cases to complete activation, during which time you cannot sign up for the service again.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Does Amazon Route 53 use an anycast network?

A

Yes. Anycast is a networking and routing technology that helps your end users’ DNS queries get answered from the optimal Route 53 location given network conditions. As a result, your users get high availability and improved performance with Route 53.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Amazon routed 53 limits

A

each route 53 account is limited to 500 hosted zones and 10,000 resources record sets per hosted zone.
50 domains,

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Can I create multiple hosted zones for the same domain name?

A

yes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Does Amazon Route 53 also provide website hosting?

A

No

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Which DNS record types does Amazon Route 53 support?

A
A (address record)
AAAA (IPv6 address record)
CNAME (canonical name record)
CAA (certification authority authorization)
MX (mail exchange record)
NAPTR (name authority pointer record)
NS (name server record)
PTR (pointer record)
SOA (start of authority record)
SPF (sender policy framework)
SRV (service locator)
TXT (text record)
Additionally, Amazon Route 53 offers ‘Alias’ records (an Amazon Route 53-specific virtual record).
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Does Amazon Route 53 support wildcard entries? If so, what record types support them?

A

Yes. all record types except for NS.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the default TTL for the various record types and can I change these values?

A

Amazon Route 53 does not have a default TTL for any record type. You must always specify a TTL for each record so that caching DNS resolvers can cache your DNS records to the length of time specified through the TTL.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Can I associate multiple IP addresses with a single record?

A

Yes. Associating multiple IP addresses with a single record is often used for balancing the load of geographically-distributed web servers. Amazon Route 53 allows you to list multiple IP addresses for an A record and responds to DNS requests with the list of all configured IP addresses.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Does Amazon Route 53 support DNSSEC?

A

Amazon Route 53 does not support DNSSEC for DNS at this time. But Amazon Route 53 allows DNSSEC on domain registration.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Does Amazon Route 53 support IPv6?

A

Yes. Amazon Route 53 supports both forward (AAAA) and reverse (PTR) IPv6 records.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Does Amazon Route 53 support Weighted Round Robin (WRR)?

A

Yes. Weighted Round Robin allows you to assign weights to resource record sets in order to specify the frequency with which different responses are served.

17
Q

What is the difference between Latency Based Routing and Geo DNS?

A

Geo DNS bases routing decisions on the geographic location of the requests. In some cases, geography is a good proxy for latency; but there are certainly situations where it is not. LatencyBased Routing utilizes latency measurements between viewer networks and AWS datacenters. These measurements are used to determine which endpoint to direct users toward.

If your goal is to minimize end-user latency, we recommend using Latency Based Routing. If you have compliance, localization requirements, or other use cases that require stable routing from a specific geography to a specific endpoint, we recommend using Geo DNS.

18
Q

Can I create an Alias record pointing to a DNS name that is managed by a traffic policy?

A

No

19
Q

Is there a charge for traffic policies that don’t have a policy record?

A

No. We only charge for policy records; there is no charge for creating the traffic policy itself.

20
Q

Can I still use Private DNS if I’m not using VPC?

A

No. Route 53 Private DNS uses VPC to manage visibility and provide DNS resolution for private DNS hosted zones. To take advantage of Route 53 Private DNS, you must configure a VPC and migrate your resources into it.

21
Q

Can I use the same private Route 53 hosted zone for multiple VPCs?

A

Yes, you can associate multiple VPCs with a single hosted zone.

22
Q

What DNS record types can I associate with Route 53 health checks?

A

You can associate any record type supported by Route 53 except SOA and NS records.

23
Q

How many consecutive health check observations does an endpoint need to fail to be considered “failed”?

A

The default is a threshold of three health check observations: when an endpoint has failed three consecutive observations, Route 53 will consider it failed. However, Route 53 will continue to perform health check observations on the endpoint and will resume sending traffic to it once it passes three consecutive observations. You can change this threshold to any value between 1 and 10 observations.

24
Q

What is the interval between health check observations?

A

By default, health check observations are conducted at an interval of 30 seconds. You can optionally select a fast interval of 10 seconds between observations.

25
Q

Do HTTPS health checks validate the endpoint’s SSL certificate?

A

No, HTTPS health checks test whether it’s possible to connect with the endpoint over SSL and whether the endpoint returns a valid HTTP response code. However, they do not validate the SSL certificate returned by the endpoint.