Here's a named.conf that works for me:
//
// named.conf for slave zones transferring from Server2003 AD-integrated
zones.
//
options {
directory "/var/named";
};
controls {
inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};
zone "." {
type hint;
file "named.ca";
};
zone "0.0.127.in-addr.arpa" IN {
type master;
file "named.local";
};
zone "test.local" IN {
type master;
file "test.local.dns";
};
zone "mydomain149." {
type slave;
file "mydomain149.dns";
masters { 10.0.0.74; };
};
zone "mydomain151." {
type slave;
file "mydomain151.dns";
masters { 10.0.0.74; };
};
zone "mydomain.148." {
type slave;
file "mydomain.dns";
masters { 10.0.0.74; };
};
include "/etc/rndc.key";
>> Stay informed about: Linux/BIND as secondary DNS with W2k3 primary - zone trans..