All domain data files of slave DNS synchronized every day, regardless of 
whether there are changes to the domain

Master:

options {
        directory "/var/named";
        // query-source address * port 53;
        allow-transfer { slaveip; };
        allow-query { any; };
        allow-query-cache { any; };
        also-notify { slaveip; };
        notify yes;
        recursion no;
        pid-file "/var/named/named.pid";
        version "xxx";
};
...
include "/etc/zones.conf";

/etc/zones.conf内容如下:
...
zone "abc.com"{
        type master;
        file "abc.com.zone";
};
....


Slave:
options {
        directory "/var/named";
        dump-file "/var/named/data/cache_dump.db";
        statistics-file "/var/named/data/named_stats.txt";
        allow-transfer { none; };
        allow-query { any; };
        allow-query-cache { any; };
        notify no;
        recursion no;
        pid-file "/var/named/named.pid";
        version "xxx";
};

...

include "/etc/zones.conf";

/etc/zones.conf内容如下:
...
zone "abc.com"{
   type slave;
        file "abc.com.zone";
        masters {masterip;};
};
....

AS4+BIND9.6.1-P1 
Why or is this situation normal?

2009-11-09 



万善义 
_______________________________________________
bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users

Reply via email to