Route53 Flashcards

1
Q

What is DNS?

A

DNS, Domain Name Server, is used to convert readable web addresses into IPv4 or IPv6 addresses.

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

What is IPv4?

A

IPv4 is 32 bit field first gen IP addresses w/ 4bn addresses.

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

What is IPv6?

A

IPv6 is 128 bit field second gen IP addresses w/ 340 undecillion addresses meant to expand the list of available addresses for devices to use.

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

What is a Top Level Domain?

A

The last section of the domain name, separated by a period, is the Top Level Domain. Ex. google.com, so “.com” is the Top Level Domain. In google.com.au, the “.au” would be the Top Level Domain.
Ex. .com, .edu, .gov

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

What is the Second Level Domain?

A

The second to last section of the domain name, separated by one or more periods, is the Second Level Domain. Ex. google.com.au, so “.au” is the Top Level Domain and “.com” would be the Second Level Domain.

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

What is the Internet Assigned Numbers Authority, IANA?

A

The Top Level Domain names are controlled by IANA in a database of all available top level domains.

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

What is a Domain Registrar?

A

A registrar is an authority that can assign domain names directly under one or more top level domains.
Ex. Amazon, GoDaddy

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

What is the WhoIS database?

A

It is the central database for each domain name that is registered with a Domain Registrar.

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

What is an SOA Record?

A

Every domain addresses begins with a Start of Authority record that stores information about the name of the server that supplied the data for the zone, the administrator of the zone, the current version of the data file, and the default number of seconds for the TTL file on resource records.

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

What is an NS Record?

A

The Top Level Domain server contains the web address, top level domain, and the Name Server Record name, which points to a record in the Name Server. The Name Server will point to the SOA, which contains the DNS Records.

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

What is a DNS A record?

A

This is an Address record, which is used by a computer to translate the name of the domain to an IP address.
ex. google.com might translate to http://123.10.10.80

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

What is TTL?

A

TTL is Time To Live. It is the length of time that a DNS record is cached on either the Resolving Server or the users own local PC. The lower the TTL, the faster changes to DNS records take to propagate throughout the internet. Typically, this is 48hrs.

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

What is a CNAME?

A

CNAMEs can be used to resolve one domain name to another. For example, if you have mobile site, “m.google.com”, but in case someone types in “mobile.google.com”, you want that to resolve to “m.google.com”, instead of having two different IP addresses, you would use a CNAME to map one to the other.

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

What is an Alias Record?

A

Alias records are used to map resource record sets in your hosted zone to ELBs, CloudFront distro, or S3 buckets that are configured as websites. The work like CNAMES. The key difference is that CNAMES can’t be used with naked domains, meaning without the “www”. Ex. “http://google.com”. It must an A record or an Alias.

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

True or False: Elastic Load Balancers do not use IP Addresses

A

True; ELBs do not have predefined IPv45 addresses, you resolve to them using a DNS name.

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

What is the difference between a CNAME and an Alias?

A

The key difference is that CNAMES can’t be used with naked domains, meaning without the “www”. Ex. “http://google.com”. It must an A record or an Alias.

17
Q

True or False: You can buy a domain name directly through AWS?

A

True; Amazon is a Domain Registrar. However, it can take up to 3 days for the domain to be registered.

18
Q

What is the Route53 Simple Routing Policy?

A

The SRP, allows only one record with one or more IP addresses. If there is more than one IP address in the A record, Route53 will randomly choose an IP to server content to the user.

19
Q

What is the Route53 Weighted Routing Policy?

A

This policy allows for multiple records splitting traffic based on different weights assigned. Ex. 50% to Ohio, 25% to Sydney, and 25% to Ireland.

20
Q

What is Route53 Latency Routing Policy?

A

This policy allows for multiple records to be set up in multiple regions so the server providing the lowest latency to the end user will be selected.

21
Q

What is Route53 Failover Routing Policy?

A

This policy allows for two records, one active server, and one secondary server. If there is a failover in the primary server, it will failover to the secondary server.

22
Q

What is Route53 Geolocation Routing Policy?

A

This policy allows multiple records which route traffic based on the end user’s geographic location. This is useful for when you want EU users to use the server designed for the EU with things like local language.

23
Q

What is Route53 Geoproximity Routing Policy?

A

This policy allows Route53 to route traffic to resources based on the geographic location of the user and of the resources. A bias allows for routing more or less traffic to different places.

24
Q

What is Route53 Multivalue Answer Policy?

A

This policy allows for multiple records, and working similarly to Simple Routing, except this allows for Health Checks.