Get your Slave DNS working (secondary DNS)
This is a complete step by step instruction:
Get your Slave DNS working (Secondary DNS)
A) Declarations:
We consider
ns1.domain.com as primary DNS
ns2.domain.com as secondary DNS (Slave DNS)
Server 1 which contains your Primary DNS
server1.domain.com
Server 2 which will contain your Slave DNS after following these Steps
server2.domain.com
We consider Server 2 as a clean server I mean a server without DNS zones (Customers' domains) also if you have DNS zones already on the server 2 additional settings and commands are necessary which should be done by an expert IT engineer and is beyond the size of this post due to its various cases.
But if you can delete server2 domains & users you can go ahead, don’t forget to use this command at next :
On server 2 In WHM -& DNS Functions -& Perform a DNS Cleanup
B) Before you Begin:
1. Make sure your /etc/hosts & /etc/resolv.conf are correct on all servers
/etc/hosts :
# Do not remove the following line, or various programs
# That requires network functionality will fail.
127.0.0.1 localhost.localdomain localhost
Server2-IP domain.com Server2
/etc/resolv.conf :
domain domain.com
search domain.com
nameserver 127.0.0.1
nameserver IP-of-nameserver
nameserver IP-of-nameserver
2. Connect to server 2 by SSH and type:
dig axfr domain.com @ip-of-ns1.domain.com
i.e.
dig @10.20.30.40 domain.com axfr
You should see your domain.com DNS records, it ensures that you have domain transfer right
Notice: If you want to know more read about AXFR and IXFR protocols or refer to BIND documents
3. You should have SSH on both servers set-up and working correctly.
4. Initial Name Server (BIND) on Server 2
C) Setting up Slave DNS on Server 2
* Go to server2 WHM and follow these steps
1. Server Setup -& Edit Setup -& in “Master Name Server” field add the IP address of ns1.domain.com
* all other fields should have valid information like BIND version, name servers and etc.
2. DNS Functions -& “Establish A Trust Relationship With a Primary Nameserver”
What you will need to enter during the process is the Master NameServer (server 1) root password
*This Step uses SSH to connect to the Master Server
3. DNS Functions -& “Synchronize DNS Records With Primary Nameserver”
4. DNS Functions -& Edit a DNS Zone
All of the Zones on Server 1 should be appeared
Congratulations! OK that’s it. Now you have the Slave DNS (Secondary) Online.
Don’t use above instructions if you don’t understand the steps.