Best unofficial Apache Server developers community
Username
Forgot password?
Sign in with Twitter account
Sign in with Facebook account

Delegating host names / sub-domain management to another DNS

0

99 views

Hi All, we have created a domain (let's say MyDomain.com) with GoogleApps so it's now hosted by eNom DNS servers.

Since all our servers are hosted on amazon cloud we want to use Amazon DNS service (Called Route53) to manage all host names (example server123.MyDomain.com).

Is it possible to configure eNom DNS by adding some records to delegate hostnames (or subdomain) management to another DNS, in this case Amazon DNS ?

Thanks!

Med

asked March 9, 2011 7:30 am CST
Med
posted via ServerFault

1 Answer

1
 

You can't really delegate individual hostnames without delegating them as individual zones, and you probably don't want to do that because it is a giant pain to manage.

Rather, create a single zone which can be delegated to your other DNS service. In your zone for mydomain.com hosted at eNom, add the delegation:

servers.mydomain.com   IN   NS   ns-123.awsdns-12.com
                       IN   NS   ns-456.awsdns-45.com

Substitute your assigned servers from Amazon accordingly. This will create a new zone delegation for servers.mydomain.com pointing to the Amazon service.

Then, following the Amazon instructions, create your A records in the new zone in XML.

...
<Name>server123.servers.mydomain.com</Name>
<Type>A</Type>
...
<ResourceRecord>
  <Value>12.34.56.78</Value>
</ResourceRecord>
...
etc.

See the Route 53 reference for details on that.

answered March 9, 2011 8:24 am CST

Your answer

Join with account you already have


Sign in with Twitter account
Sign in with Facebook account
Sign in with Google Friend Connect

Preview
Similar questions
TCP connection management
February 11, 2011