ubuntuusers.de

Unbenannt

Autor:
ostcar
Datum:
26. Mai 2015 18:23
Code:
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
$ cat /etc/bind/named.conf
options {
	directory "/var/cache/bind";

	dnssec-validation auto;

	auth-nxdomain no;    # conform to RFC1035
	listen-on-v6 { any; };
	listen-on { 127.0.0.1; };

	allow-transfer {"none";};
	allow-recursion { localhost; ::1; };
};

include "/etc/bind/rndc.key";
include "/etc/bind/zones.conf";