I needed to understand the building blocks of domains, some providers call the same thing by different names. Many more record types exist and you can use tooling like https://www.nslookup.io to query these values. DNS stands for Domain Name System, its most basic job is to resolve Domain names to IP address. DNS has a hierarchy of 3 main servers Root Server
-> Top Level Domain Server
(TLD) -> Authoritative Name Server
Example request to example.com
- Root Server, looks at the request and forwards the request to the correct TLD,
example.com
needs to go to the.com
TLD - Top Level Domain Server, looks at the request and forwards the request to the correct Authoritative Name Server as it only knows information about top level domains like
.com .org
ect - Authoritative Name Server, knows everything about a domain, example IP address, so it resolves
example.com
to12.34.56.78
using its zone file
Understanding the stucture, computers read the domain from right to left
1 | www.example.com. |
All records have a time to live (TTL) which is how long they should be cached for on the machine making the request. Example 7200
which is seconds, so 2 hours. (7200 / 60 minutes/hour = 120 minutes, 120 minutes / 60 minutes/hour = 2 hours).
A Record (Address)
This is the most common record, this is an IPv4 address (32 bit numeric address) that is resolved from the apex
/ root
domain. Note an AAAA
is the same thing but for IPv6 (128 bit alphanumeric address).
1 | Type | Value | Resolves to | Notes | |
CNAME Record (Canonical)
Typically used to resolve a subdomain such as www
or mail
to the domain hosting that subdomain’s content.
The root domain it resolves to however doesnt have to be the same, example www.foo.com
can have a CNAME of bar.com
This is basically and ALIAS and you can also create an A record to point www.example.com
-> example.com
CNAME Flattening
This is not a standard CNAME
and is as a workaround, allowing you to effectively proxy your apex domain.
Note that CNAME Flattening
, DNS chasing
, ANAME
and ALIAS
are all the same thing and allow you to get the root ip addresses for a domain from a different domain. So that would allow the provider to maintain all the clients host records from a domain they control.
1 | client1.com -> CNAME for client1.myagencyrecords.net is -> A record for server1.myagencyrecords.net |
- https://simpledns.plus/kb/2-alias-records-auto-resolved-alias
- Adam Lowe: CNAME Flattening for Web Agencies
TXT Record
Miscellaneouse domain information, can be used to verify domain ownership, ensure email security, and prevent spam and phishing. Also used to handle outgoing email.
MX Record
Mail exchanger record used for email. When you send an email to spam@example.com
the mail transfer agent (MTA) will query the MX records for example.com looking for the email server(s). The DNS could respond back with mail1.example.com which is where it should send the email to.
There are normally two entries, primary and secondary. This is denoted based on the priority field, lower is primary.
1 | Type | Priority | Name | Host | |
SOA Record
Start of authority, stores administrative information about a DNS zone. A DNS zone is a section of a domain name space that a certain administrator has been delegated control over. DNS zones allow a domain namespace to be devided into different sections. Examples shop.example.com
, blog.example.com
and support.example.com
You could have DNS ZONE 1 for shop.example.com
and blog.example.com
if together they only have a few computers and have one administrator to manage it. Then have DNS ZONE 2 for support.example.com
if it has several times more computers and another administrator to manage it.
1 | Type | MName (Primary name server) | RName (email of the administrator, the left dot is actually an @) | Serial # (version in the zone) | Retry | |
NS Record
Name Server record provides the name of the authoritative name sever within a domain.
1 | Type | Value | Name | Notes | |
SRV Record
Service record, points to a server including a port number, this is useful for Voice Over IP (VOIP), instant messaging, printers ect
1 | Type | Priority | Service | Port | Name | Weight | |
PTR Record
Pointer record, this is basically the reverse of an A or AAAA record, so you give the IP 12.34.56.78
and get the DNS example.com
. They are attached to email and are used to prevent email spam.
1 | Type | IP Address | Name | |
Examples, so an email sent from gmail.com
should include 209.85.220.41
, if it doesnt it will be flagged as spam.
1 | IP | Email domain | |