DNS Manager

From Help
Revision as of 15:26, 13 April 2011 by WikiSysop (talk | contribs) (Created page with 'DNS Manager allows you to edit your domain’s zone file, including A (address) records, CNAME (canonical name) records and MX (mail exchange) records. This is a powerful applica…')

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

DNS Manager allows you to edit your domain’s zone file, including A (address) records, CNAME (canonical name) records and MX (mail exchange) records. This is a powerful application that should only be used by advanced users and with extreme care. Please read the following information before making any changes to your zone file.

Default Zone File

If you select “Edit Zone File” and click “Next,” your current zone file will be displayed at the top of the screen. By default, your zone file will contain several important records. Any changes to these records may cause serious problems with your website and email performance.


Resource Record Abbreviations

Your domain name is called your “origin.” The origin is appended to all names in the zone file that do not end in a dot. For example, if your domain is yourname.com, the entry “www” in the zone file is equal to “www.yourname.com.” A blank space is equal to “yourname.com.”

A (address) Records

An address record uses the following format to set an IP address to correspond with your domain:

<prefix for domain> IN A <web server IP address>

This determines where someone will be sent when they are looking for your domain. Address records are also typically used with MX records so that “mail.yourname.com” points to the IP address of the mail server that will be accepting email for your domain.

CNAME (canonical name) Records

The canonical name record uses the following format to specify an alias for an existing A (address) record:

<prefix for domain> IN CNAME <existing address record>

Note that an address record maps to an IP address directly, while a canonical name record maps to an IP address indirectly, by referring to existing address records.

MX (mail exchange) Records

Like a canonical name record, a mail exchange record must reference an existing address record. Mail exchange records also include an extra parameter called a “preference value” in the following format:

<blank (origin)> IN MX <preference value> <existing address record>

The preference value is a number in the range of 0-65535 that indicates the mail exchanger's priority. Mailers will attempt to deliver mail to the exchanger with the lowest preference value. If delivery fails, the mailer will then attempt to deliver mail to the exchanger with a higher preference value.

In your default zone file, the MX records point to the megamailservers.com domain. The existing address records for these MX records are located in a different zone file. Note that in DNS Manager, the left side of an MX record must be blank, indicating your origin (domain name). Any entry on the left side of an MX record will be ignored.