> But reload doesn't work for dynamic zones:

Do the internal and external versions *both* need to be dynamic? 
I'd expect it to work okay if you had only one of them dynamic, and
sent periodic reload commands to the other one.

The master/slave approach really works better, though.  Something like
this:

    view internal {
        match-clients { !key example-key; localnets; };
        zone example.com {
            type slave;
            masters { localhost key example-key; }
        };
    };

    view external {
        match-clients { any; };
        zone example.com {
            type master;
            file "filename";
            update-policy { grant example-key zonesub ANY; };
            also-notify { 127.0.0.1; };
        };
    };

-- 
Evan Hunt -- e...@isc.org
Internet Systems Consortium, Inc.
_______________________________________________
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users

Reply via email to