On 7/7/08 4:44 PM, Jacob Yocom-Piatt wrote:
afaict as of BIND 9.3.2 use of an acl in the masters option was supported, e.g.

acl int_masters {
   10.0.0.1;
};

...

       zone "somedomain.com" {
               type slave;
               masters { int_masters; };
               file "slave/internal/somedomain.com";
       };

but apparently named does not parse this and complains that it is

'unable to find masters list 'int_masters''

any clues as to what is going on here?

Perhaps the missing quote marks around the ACL name?

This works for me:

acl "internal-xfer" {
    10.0.0.93;
    10.0.0.94;
};

acl "trusted" {
      10.0.0.0/8;
      localhost;
};

zone "somedomain.com" in {
        type master;
        file "master/db.somedomain.com";
        allow-query { trusted; };
        allow-transfer { internal-xfer; };
};

dn

Reply via email to