Route 53 Flashcards

(30 cards)

1
Q

What is DNS?

A

Translates human friendly hostnames into machine IP addresses

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

Amazon Route 53

A

Scalable and authoritative (customer can update DNS records) DNS

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

Route 53 supports the following DNS record types

A
  • A
  • AAAA
  • CNAME
  • NS
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

A record type

A

maps hostname to IPv4

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

AAAA record type

A

maps hostname to IPv6

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

CNAME record type

A

Target is a domain name which must have an A or AAAA record

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

NS record type

A

name servers for hosted zone (control how traffic is routed for a domain)

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

Route 53 hosted zones

A

Container for records that define how to route traffic to domain and its subdomains

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

What does high records TTL mean?

A

Less traffic on Route 53 but possibly outdated records

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

What does low records TTL mean?

A

More traffic on Route 53 ($$) but records are outdated for less time and it is easy to change records

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

What is a CNAME record?

A

Points a hostname to any other hostname (only for root domain)

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

What is a Route 53 alias?

A

Points a hostname to an AWS resource (works for root domain and non root domain), free of charge, native health check

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

Can you set TTL on alias record?

A

no

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

Simple routing policy

A

Route traffic to a single resource, can specify multiple values in the same record (random one is chosen by the client)

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

Weighted routing policy

A

Control the percentage of requests that go to each specific resource (used for load balancing between regions, testing new application versions)

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

Latency based routing policy

A

Redirect to the resources that has the least latency close to us (based on traffic between users and AWS regions)

17
Q

Route 53 calculated health checks

A

Combine results of multiple health checks into a single health check

18
Q

Geolocation routing policy

A

Routing based on user location

19
Q

Geoproximity routing policy

A

Route traffic to resources based on location of users and resources, can give bias to particular regions, can shift traffic to a particular region by increasing bias

20
Q

IP based routing policy

A

Routing based on client IP addresses, provide list of CIDRs for clients and the corresponding endpoints

21
Q

Multi value routing policy

A

Use when routing traffic to multiple resources, but not a substitute for having an ELB as it is client side load balancing

22
Q

Can you use route 53 as DNS service provider if you buy your domain on 3rd party registrar?

A

Yes - create hosted zone in route 53 and update NS records on 3rd party website to use route 53 name serveres

23
Q

What is VPC?

A

Private network to deploy your resources

24
Q

What are subnets?

A

Allow you to partition your network inside the VPC (on AZ level)

25
What does internet gateway do?
Allows VPC instance to connect with the internet
26
What does a NAT Gateway (AWS) or NAT instance do?
Allow instances in Private Subnets to access the internet while remaining private
27
What is a NACL / Network ACL?
Firewall which controls traffic from and to a subnet (can have ALLOW and DENY rules, rules only include IP addresses)
28
What is VPC peering?
Connect two VPC with non overlapping IP ranges (not transitive)
29
What are VPC endpoints for?
Provide private access to AWS services within VPC
30