LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Server (https://www.linuxquestions.org/questions/linux-server-73/)
-   -   DNS Config Issues (https://www.linuxquestions.org/questions/linux-server-73/dns-config-issues-744855/)

settntrenz 08-11-2009 01:03 AM

Add the following before the "options {"

Code:

acl "trusted" {
    192.168.0.0/24;
    10.0.0.0/24;
    localhost;
    localnets;
 };

and the following after "allow-transfer {10.10.1.4;};"
Code:

    allow-query { any; };
    allow-recursion { trusted; };
    allow-query-cache { trusted; };

The example ACL includes 192.168.0.0/24 and 10.0.0.0/24 as sample networks. You'll have to replace those with networks ranges that reflect your environment. This configuration will allow all systems that can reach your server to request authoritative data, but only those hosts within the "trusted" ACL will have access to recursive queries.


All times are GMT -5. The time now is 05:09 PM.