On the Linux box, you need an entry something like this in your named.conf:
Code:
zone "clubpeb.com" {
type slave;
file "slave/db.clubpeb.com";
masters { 192.168.1.10; }; // this is the IP of the master DNS server for this zone
// some security
allow-transfer { localnets; }; // "localnets" means the subnets that all of the NICs on this machine are attached to
allow-query { any; };
};
On the Windows server you need to make sure that you allow AXFR requests from the IP of the Linux box.