On Mon, Jul 7, 2008 at 5:44 PM, Jacob Yocom-Piatt
<[EMAIL PROTECTED]> 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?

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)


Philip Guenther

Reply via email to