Skip to main content

DNS Record Types

------------------------------------------------------------------------------------------------------------------------------------------------

CNAME (Canonical Name) Record: 

Example:

image.png

 abc.b4sed.xyz points to 123.b4sed.xyz and has its traffic proxied through Cloudflare.

------------------------------------------------------------------------------------------------------------------------------------------------

CAA (Certification Authority Authorisation) 

CAA records are used to allow domain owners to declare which certificate authorities are allowed to issue a certificate for that domain. If a CAA record is present, only the CAs listed in the records are allowed to issue certificates for that hostname. 

Use Case: CAA records are primarily beneficial if you want to restrict certificate issuance to specific CAs other than Cloudflare's default ones. This can be useful for increased security or policy compliance within your organization.

------------------------------------------------------------------------------------------------------------------------------------------------

TXT (Text) Record: 

A TXT record allows you to provide extra information about a domain in an unformatted human readable way. This is commonly used to provide information about a server, network, data centre etc. 

------------------------------------------------------------------------------------------------------------------------------------------------

A Record (Address): 

An A record is used to map domain names to the IPv4 address of a resource on the internet, such as another computer or server. 

------------------------------------------------------------------------------------------------------------------------------------------------

AAAA (Quad-Address) Record: 

An AAAA record is the same as the A record except it points the hostname to an IPv6 address instead of an IPv4 address. These records are only required if your server supports IPv6 traffic. 

------------------------------------------------------------------------------------------------------------------------------------------------

MX Record (Mail Exchanger): 

An MX record specifies the servers that deal with incoming email and in which order your servers will be tried if you have several and the preferred one is unavailable. 

------------------------------------------------------------------------------------------------------------------------------------------------

SPF (Sender Policy Framework) Record: 

SPF records are designed to prevent spammers from spoofing emails from your domain by providing you with a statement confirming which servers are authorised to send email on your domain’s behalf. 

Whilst there is a dedicated SPF record type, it's important to note that many mail providers will only support SPF records in the form of a TXT record.

------------------------------------------------------------------------------------------------------------------------------------------------

SRV Record (Service)

SRV records provide data regarding a domain that tells you its location within the domain name system, e.g. its host name and port number. 

------------------------------------------------------------------------------------------------------------------------------------------------

SOA Record (Start of Authority): 

SOA records are used to define the authoritative settings for your domain. This controls how your zone propagates to secondary nameservers across the Internet. SafeDNS creates an SOA record automatically for each domain added into our system. 

 SOA Records have the following fields: 

 Primary Nameserver - This is the authoritative nameserver that other nameservers will use to get the most up-to-date records for the domain to resolve conflicting records from other nameservers. 

 Administrator Email - This specifies the mailbox of the person responsible for managing records on this domain. 

 Refresh - The time interval (in seconds) before records should be refreshed. Recommended value - 86400 (24 Hours). 

Retry - The time interval (in seconds) before a failed refresh should be retried. Recommended value - 7200 (2 Hours). 

 Expire - The time interval (in seconds) that specifies the upper limit on the time interval that can elapse before the records are no longer valid. Recommended value - up to 2419200 (672 Hours). 

------------------------------------------------------------------------------------------------------------------------------------------------

TTL

The number of seconds that this record will be cached on DNS servers. 

------------------------------------------------------------------------------------------------------------------------------------------------