mirror of
https://github.com/IntenseWebs/server-configs.git
synced 2025-02-25 18:55:22 -06:00
22 lines
473 B
Plaintext
22 lines
473 B
Plaintext
acl trustedclients {
|
|
localhost;
|
|
localnets;
|
|
192.168.1.140; #ns1.intensewebs.com
|
|
192.168.1.141; #ns2.intensewebs.com
|
|
192.168.1.0/24;
|
|
192.168.2.0/24;
|
|
};
|
|
|
|
options {
|
|
directory "/var/cache/bind";
|
|
|
|
recursion yes;
|
|
allow-query { trustedclients; };
|
|
allow-query-cache { trustedclients; };
|
|
allow-recursion { trustedclients; };
|
|
|
|
dnssec-validation no;
|
|
|
|
listen-on-v6 { any; };
|
|
};
|