Printer has a wired and wireless name&IP now
[sysconfig/bind.git] / named.conf.options
1 options {
2         directory "/var/cache/bind";
3
4         // If there is a firewall between you and nameservers you want
5         // to talk to, you may need to fix the firewall to allow multiple
6         // ports to talk.  See http://www.kb.cert.org/vuls/id/800113
7
8         // If your ISP provided one or more IP addresses for stable 
9         // nameservers, you probably want to use them as forwarders.  
10         // Uncomment the following block, and insert the addresses replacing 
11         // the all-0's placeholder.
12
13         // ALEX DEHNERT: slightly updated 2008-12-19
14         // ALEX DEHNERT: slightly updated 2010-03-01
15         forward first;
16         forwarders {
17                 18.0.71.151;
18                 18.0.70.160;
19                 18.0.72.3;
20         };
21
22         //========================================================================
23         // If BIND logs error messages about the root key being expired,
24         // you will need to update your keys.  See https://www.isc.org/bind-keys
25         //========================================================================
26         dnssec-validation auto;
27
28         // ALEX DEHNERT: copied from old arctic version on 2008-12-19
29         //ALEX DEHNERT: Security-related stuff:
30         // Secure(ish):
31         allow-recursion { 18.18.208.12; 66.92.29.156; 66.92.29.144; 127.0.0.1; 192.168.0.0/16; 18.0.0.0/8; };
32         //allow-query   { 66.92.29.156; 66.92.29.144; 127.0.0.1; };
33         allow-transfer { none; };
34
35         // Insecure:
36         //allow-recursion       { any; };
37         allow-query     { any; };
38
39
40         auth-nxdomain no;    # conform to RFC1035
41         listen-on-v6 { any; };
42
43         // Decent info on DNS
44         // http://newweb.zytrax.com/books/dns/ch2/
45         // http://www.madboa.com/geek/soho-bind/
46 };
47