Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

force master and slave to sync

Status
Not open for further replies.

bcardona

Programmer
May 10, 2001
103
US
i have a master and slave dns server that for some reason stopped syncing, until i figure out why, is there a command of a way I could force them to sync, their both older versions of suse 7.2 and 6.4
 
Go to ad sites and services, right click the the server you want to replicate and choose replicate now. You can also do this from the dns mmc console and do the same thing.

Glen A. Johnson
If you're from Northern Illinois/Southern Wisconsin check out Tek-Tips in Chicago, Illinois Forum.

TTinChicago
 
I think hes using bind DNS server and not windows dns server.

 
Restarting the named service always forces a transfer. But that probably won't work since transfers aren't normally working. Try turning on logging to help diagnose your problem. Add these lines to your named.conf file and restart named.


logging
{channel my_file {
file "/var/log/named.log";
severity debug;
print-time yes; };
category default {my_file;};
category xfer-out {my_file;};
category security {my_file;};
};

You'll need to create the named.log manually. Do this:

$ touch /var/log/named.log
$ chown named:named /var/log/named.log

Check the times on both servers. From my experience if the times aren't sync'd transfers will stop.

-Jason
 
i did what you said, i checked the times and they were way off, i also add the logging script, I still get Err/TO getting serial# for "whatever.com", I also get Sent NOTIFY for "whatever.com IN SOA(is this correct in saying that sent notify means the master and slave are tranferring for that specific zone.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top