On 7/8/08 9:02 AM, Philip Guenther wrote:
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?

Define int_masters using the 'masters' statement instead of the 'acl' statement:

    masters int_masters {
        10.0.0.1;
    };

(The 'masters' statement was added in bind 9.4.0, IIRC)

You're right about the masters syntax; sorry, I missed before that this was a masters problem and not an ACL problem.

The masters statement began with bind 9.3, according to the Albitz/Liu "DNS and Bind" book. The named.conf(5) manpage describes its syntax.

dn

Reply via email to