David Newman wrote:
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; };
};


david,

tried this out but no joy. it still gives a similar message when i enclose the acl name in quotes:

/etc/named.conf:98: masters "int_masters" not found

guess it's time to take a peek at the source and see what's up.

cheers,
jake

Reply via email to