Route53 Flashcards
What is DNS?
DNS, Domain Name Server, is used to convert readable web addresses into IPv4 or IPv6 addresses.
What is IPv4?
IPv4 is 32 bit field first gen IP addresses w/ 4bn addresses.
What is IPv6?
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.
What is a Top Level Domain?
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
What is the Second Level Domain?
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.
What is the Internet Assigned Numbers Authority, IANA?
The Top Level Domain names are controlled by IANA in a database of all available top level domains.
What is a Domain Registrar?
A registrar is an authority that can assign domain names directly under one or more top level domains.
Ex. Amazon, GoDaddy
What is the WhoIS database?
It is the central database for each domain name that is registered with a Domain Registrar.
What is an SOA Record?
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.
What is an NS Record?
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.
What is a DNS A record?
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
What is TTL?
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.
What is a CNAME?
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.
What is an Alias Record?
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.
True or False: Elastic Load Balancers do not use IP Addresses
True; ELBs do not have predefined IPv45 addresses, you resolve to them using a DNS name.