Add License to VES library
[demo.git] / boot / bind_options
1 acl "trusted" {
2         #x.x.x.x;
3 };
4 options {
5         directory "/var/cache/bind";
6
7         recursion no;                 # enables recursive queries
8         //allow-recursion { netmask; };  # allows recursive queries from "trusted” clients i.e. LB only
9         listen-on { dns_ip_addr; };   # ns1 IP address - listen on this address only
10         allow-transfer { none; };      # disable zone transfers by default
11
12         forwarders {
13                 8.8.8.8;
14                 8.8.4.4;
15         };
16
17         // If there is a firewall between you and nameservers you want
18         // to talk to, you may need to fix the firewall to allow multiple
19         // ports to talk.  See http://www.kb.cert.org/vuls/id/800113
20
21         // If your ISP provided one or more IP addresses for stable
22         // nameservers, you probably want to use them as forwarders.
23         // Uncomment the following block, and insert the addresses replacing
24         // the all-0's placeholder.
25
26         // forwarders {
27         //      0.0.0.0;
28         // };
29
30         //========================================================================
31         // If BIND logs error messages about the root key being expired,
32         // you will need to update your keys.  See https://www.isc.org/bind-keys
33         //========================================================================
34         dnssec-validation auto;
35
36         auth-nxdomain no;    # conform to RFC1035
37         listen-on-v6 { any; };
38 };
39