Setting up DNS Records
Posted by Nathan G on 12 July 2018 10:54 AM
|
|
Setting Up Your Own DNS RecordsPlease follow these directions and/or watch the video for information on creating and verifying your account. Video link: https://www.youtube.com/watch?v=QGu3KhUEKRg&index=5&list=PL1lJ3G08FMO3p3pRqBbyz_bZPeqt_u5qbDNS records are basically mapping files that tell the DNS server which IP address each domain is associated with, and how to handle requests sent to each domain. When someone visits a web site, a request is sent to the DNS server and then forwarded to the web server provided by a web hosting company, which contain the data contained on the site. The three most important types of DNS records are: A Records - An A record points a domain or subdomain to a specific IP address and determines the TTL (time-to-live). The TTL determines how long a resolver is supposed to cache the DNS query before the query expires and a new one needs to be done. (example: You want example.com to run on a server with the IP address of 1.2.3.4. You would create an A record that points example.com to the IP address 1.2.3.4. MX Records - MX records are used to help route email according to the domain owners preference. The MX record itself specifies which server to attempt to use to deliver mail to when this type of request is made to the domain. (example: You have three mail servers that you want to connect to example.com. You would create three MX records that point your mail servers to example.com, and modify the priority level to determine the order in which they receive mail. CNAME Records - CNAME records are used to point a domain or subdomain to another hostname. It is important to note that CNAME records create a complete copy of all DNS records for the hostname or fully qualified domain name (FQDN) that you are pointing to. So, if you setup a CNAME to point host.domain1.com to domain2.com, host.domain1.com will inherit all DNS records setup for domain2.com, including MX and other records. Also, when attempting to delete a CNAME record, you must enter a “dot” (.) after the CNAME record in order to terminate it. (example: If you have a domain called docs.example.com, but you also want to access it through documents.example.com, you would add a CNAME record that points documents.example.com to docs.example.com. When you visit docs.example.com you will see that same content as you would see at documents.example.com.) How to set up an A record:
How to set up an MX record:
How to set up a CNAME Record:
| |
|