DNS Replication Issues

Hey all,

My setup to date is that I have 2 boxes on the net. 1 being windows , and 1 being linux. Linux server is running bind 9.x and windows machine is 2003 with MS dns installed.

I have setup all my master domains on the linux box and have added these domains as secondary domains on my MSdns box.

My issue to date is although the MSdns box loads the initial zone file, it doesn't auto update it when there are changes made to the master zones on the linux box.

Currently this is the extract from my named.conf file:
Code:
options {
        directory "/var/named";
        allow-notify {192.168.0.2;};
};

zone "test.com" {
        type master;
        file "pz/test.com";
        allow-update {192.168.0.2;};
};
So using that extract - the MSdns box ip is 192.168.0.2 .

Have I missed anything to be able to push the updates to the secondary dns server?

Is there a setting in the zone file i should be looking at?

This is an extract from a master zone file i am using:
Code:
; zone file for test.com $TTL 12h    ; default TTL for zone
@       IN      SOA     ns1.hostdomain.com. owner.test.com. (
                        2005081901
                        3h
                        15m
                        3w
                        3h )

         IN      NS  ns1.hostdomain.com.
         IN      NS  ns2.hostdomain.com.
Cheers guys and hopefully someone can help me DNS Replication Issues

Chris

 

 

 

 

Top