DNS Records: an Introduction - 0 views
-
reading from right to left
- ...37 more annotations...
-
You’ll want to specify at least two name servers. That way, if one of them is down, the next one can continue to serve your DNS information.
-
Usually caching is a good thing, but it can be a problem if you’ve recently made a change to your DNS information
-
DNS Certification Authority Authorization uses DNS to allow the holder of a domain to specify which certificate authorities are allowed to issue certificates for that domain.
-
You should not use a CNAME record for a domain that gets email, because some mail servers handle mail oddly for domains with CNAME records
-
A DKIM record or domain keys identified mail record displays the public key for authenticating messages that have been signed with the DKIM protocol
-
An MX record or mail exchange record sets the mail delivery destination for a domain (or subdomain).
-
Your MX records don’t necessarily have to point to your Linode. If you’re using a third-party mail service, like Google Apps, you should use the MX records they provide.
-
The order of NS records does not matter; DNS requests are sent randomly to the different servers, and if one host fails to respond, another one will be queried.
-
A PTR record or pointer record matches up an IP address to a domain (or subdomain), allowing reverse DNS queries to function.
-
PTR records are usually set with your hosting provider. They are not part of your domain’s zone file.
-
An SOA record or Start of Authority record labels a zone file with the name of the host where it was originally created.
-
The single nameserver mentioned in the SOA record is considered the primary master for the purposes of Dynamic DNS and is the server where zone file changes get made before they are propagated to all other nameservers.
-
An SPF record or Sender Policy Framework record lists the designated mail servers for a domain (or subdomain).
-
An SPF record for your domain tells other receiving mail servers which outgoing server(s) are valid sources of email, so they can reject spoofed email from your domain that has originated from unauthorized servers.
-
Your SPF record will have a domain or subdomain, type (which is TXT, or SPF if your name server supports it), and text (which starts with “v=spf1” and contains the SPF record settings).
-
An SRV record or service record matches up a specific service that runs on your domain (or subdomain) to a target domain.
-
A TXT record or text record provides information about the domain in question to other resources on the Internet.
-
One common use of the TXT record is to create an SPF record on nameservers that don’t natively support SPF.