On Apr 7, 2009, at 8:37 AM, Callum Millard wrote:
//I've tried a variety of versions of this next line:
//zone "16/0.0.5.10.in-addr.arpa."
//zone "5.10.in-addr.arpa."
//zone "0.0.5.10.in-addr.arpa."
//Etc., etc.
zone "16/0.0.5.10.in-addr.arpa." IN {

       type forward;
        forwarders {10.5.0.1;};
};

zone "16/0.0.6.10.in-addr.arpa." IN {

       type forward;
        forwarders {10.6.0.1;};
};

Close, but no cigar. Here is the correct syntax:

zone "5.10.in-addr.arpa." IN {

       type forward;
        forwarders {10.5.0.1;};
};

zone "6.10.in-addr.arpa." IN {

       type forward;
        forwarders {10.6.0.1;};
};

Chris Buxton
Professional Services
Men & Mice

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

Reply via email to