DNS Resource Record Types
Learn about the different types of DNS records.
We'll cover the following...
The DNS uses resource records to describe properties of domains in the DNS system. Because there are multiple services and protocols used on the internet, we also need different types of resource records (we already saw the A
and NS
types in the last lesson).
The following fields are common for all resource records:
Common Resource Record Fields
Field | Meaning |
| The |
|
|
| This is the class of the record. There are only two options, |
| This is the type of the record (e.g., |
| The |
If we take a look at the output of one of our dig
commands from the last lesson, we can see these fields reflected in the ANSWER
, AUTHORITY
or ADDITIONAL
section:
owner TTL class type RDATAeducative.io. 3600 IN NS mario.ns.cloudflare.com.
Let’s take a look at the most important types of resource records.
NS
record
The NS
records describe the name servers responsible for a particular domain. The resource record above is an example of an NS
...