I'm making a website, and I need a sub-domain.
I need to email my host so he can add the sub-domain linking, but I don't know which type of DNS record to add on my end in the DNS.
Is it A or CNAME?
Thank you!
|
I'm making a website, and I need a sub-domain. I need to email my host so he can add the sub-domain linking, but I don't know which type of DNS record to add on my end in the DNS. Is it A or CNAME? Thank you! |
|||
|
|
|
The answer is, either will work. Which is preferred should be advised upon by your web host. If they're in the habit of changing the IP addresses of their servers, use a |
|||
|
|
|
It depends on whether you want to delegate hosting the subdomain off to a different DNS server (or to the same server, but in a different zone file). You delegate a zone when you want some other entity to control it, such as a different IT department or organization. If you do, then you need NS records. If not, A or CNAME records will suffice. Let's say you have the domain example.com. You have an A record for www.example.com and you want to create the subdomain info.example.com with www.info.example.com as a host in it. DelegationIn the this situation, let's further say you have two DNS servers that will be hosting that subdomain. (They could be the same servers that are currently hosting example.com.) In this case, you will create two NS entries in the example.com zone file:
On those two servers, you will create the info.example.com zone and populate it as you would any other domain.
No delegationHere, just add an A record in the example.com zone file, using a dot to indicate that you want to create the
Using CNAMEThe decision of whether to use a CNAME is independent of the delegation choice. I generally like to use a CNAME for the "generic" names which point to specific machine names. For example, I might name my machines using an organizational naming convention such as cartoon characters (daffy, elmer, mickey, etc.) or something bureaucratic (sc01p6-serv) and point the generic names to them. If the IP address of the machine ever changes, I need look in only one place to modify it.
|
||||
|
|
|
You need the following records in your hosts DNS:
And you need to provide a pair of DNS name servers for your sub-domain. They need to serve the following records:
RFC1034 contains a good description of how sub-domains are configured. BTW - you might have better luck posting questions about configuration to serverfault.com or superuser.com in the future. |
|||
|
|
|
If your host gives you a name in another domain, you need to create a cname in your domain, if your host gives you an IP address, you need to create an a record in your domain. |
|||
|
|