Re: check the master/slave status

2011-01-10 Thread Matus UHLAR - fantomas
On 07.01.11 12:08, blr maani wrote: > You can develop scripts to do the following: > > Develop script(s) and run on a host which has access to both Master(s) and > Slave(s). The script should do the following: > > 1. For each zones, check serial number on both master(s) and slave(s) for > the zon

Re: check the master/slave status

2011-01-09 Thread pyh
p...@mail.nsbeta.info writes: I wrote a nagios plugin for monitoring the status of master/slave DNS. Just to check if their serial number is the same. The script shows below,thanks for all your directions. #!/usr/bin/perl use strict; use Net::DNS; use Getopt::Std; my %opts; getopts('hm:

Re: check the master/slave status

2011-01-09 Thread pyh
I wrote a nagios plugin for monitoring the status of master/slave DNS. Just to check if their serial number is the same. The script shows below,thanks for all your directions. #!/usr/bin/perl use strict; use Net::DNS; use Getopt::Std; my %opts; getopts('hm:s:z:', \%opts); if ($opts{'h'}) {

Re: check the master/slave status

2011-01-07 Thread Alan Clegg
On 1/7/2011 3:08 PM, blr maani wrote: > 1. For each zones, check serial number on both master(s) and slave(s) > for the zone and compare it. Report mismatch if any. dig +nssearch AlanC signature.asc Description: OpenPGP digital signature ___ bind-u

Re: check the master/slave status

2011-01-07 Thread blr maani
You can develop scripts to do the following: Develop script(s) and run on a host which has access to both Master(s) and Slave(s). The script should do the following: 1. For each zones, check serial number on both master(s) and slave(s) for the zone and compare it. Report mismatch if any. 2. If yo

Re: check the master/slave status

2011-01-07 Thread Sten Carlsen
Slightly OT, if the test is performed really from outside, it will also catch a number of other problems like network issues etc. Some of these issues might look like a DNS issue but with a different root cause, maybe even happening outside your own network. On 07/01/11 16:27, Bryan Bradsby wrote

Re: check the master/slave status

2011-01-07 Thread Bryan Bradsby
For zones where we provide all the masters and slaves, the external perspective of an outside testing site is crucial to ensuring that we have not missed anything, especially after a change. We find an emphasis on scripts monitoring the log files works best for zones where we are not providing ma

Re: check the master/slave status

2011-01-07 Thread Matus UHLAR - fantomas
> Niall O'Reilly writes: >> If your zones are properly delegated, and your servers accessible >> from the public Internet, then the web-based remote-checking tools >> available at www.zonecheck.fr or dnscheck.iis.se are excellent. >> Either of these will give you some ideas abo

Re: check the master/slave status

2011-01-07 Thread pyh
Niall O'Reilly writes: If your zones are properly delegated, and your servers accessible from the public Internet, then the web-based remote-checking tools available at www.zonecheck.fr or dnscheck.iis.se are excellent. Either of these will give you some ideas a

Re: check the master/slave status

2011-01-07 Thread Niall O'Reilly
On 7 Jan 2011, at 09:10, p...@mail.nsbeta.info wrote: > I just want to write a script for checking master and slave to make sure they > have been always syncing the data correctly. What's the idea for doing it? Initial condition: dig @master zone SOA dig @slave zone SOA

check the master/slave status

2011-01-07 Thread pyh
Hello, I just want to write a script for checking master and slave to make sure they have been always syncing the data correctly. What's the idea for doing it? Thanks. ___ bind-users mailing list bind-users@lists.isc.org https://lists.isc.org/mai