ACL for Forwarders

Linux Addict linuxaddict7 at gmail.com
Fri Aug 1 17:49:33 UTC 2008


Dawn Connelly wrote:
> Can you send us that section of your named.conf file? We could probably give you a better answer with it. 
> ------Original Message------
> From: Linux Addict
> Sender: bind-users-bounce at isc.org
> To: comp-protocols-dns-bind at isc.org
> Sent: Aug 1, 2008 9:53 AM
> Subject: ACL for Forwarders
>
> Hi, Does the fordwarder option wont take ACLs? master is the ACL here.
>
> /etc/named.conf:30: expected IP address near 'masters.
>
> ~LA
>
>
>
> Sent from my Verizon Wireless BlackBerry
>
>   
acl "internal" {
        172.0.0.0/23; 10.0.0.0/23;
};
acl "masters" {
        ip1;  ip2 ;
};

controls {
        inet 127.0.0.1 allow { 127.0.0.1; } keys { rndckey; };
};

key "rndckey" {
        algorithm       "hmac-md5";
        secret          " ";
};

options {

        listen-on port 53 {
                ip;
                };
        directory       "/var/named";
        dump-file       "/var/named/data/cache_dump.db";
        statistics-file "/var/named/data/named_stats.txt";
        memstatistics-file "/var/named/data/named_mem_stats.txt";
        version         "[Unknown]";
        recursion yes;
        pid-file "/var/named/named.pid";
        allow-query { internal; };
        forwarders { masters; };
        allow-update-forwarding { masters; };
        allow-recursion{ internal; };



Thanks, LA


More information about the bind-users mailing list