123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- options {
- directory "/var/cache/bind";
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- dnssec-validation no;
- auth-nxdomain no; # conform to RFC1035
- listen-on-v6 { any; };
- allow-recursion {
- 127.0.0.0/8;
- ::1/128;
-
- {%- for entry in salt['pillar.get']('dns-server:auth:allow-recursion', []) %}
- {{ entry }};
- {%- endfor %}
- };
-
- notify no;
- version "Freifunk Hochstift DNS";
- use-v4-udp-ports { range 1024 65535; };
- use-v6-udp-ports { range 1024 65535; };
- };
- statistics-channels {
- inet 127.0.0.1 port 8053 allow { 127.0.0.1; };
- };
|