named.conf.in revision 1.1.1.1
1/*
2 * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
3 *
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 *
8 * See the COPYRIGHT file distributed with this work for additional
9 * information regarding copyright ownership.
10 */
11
12// NS2
13
14acl rfc1918 { 10/8; 192.168/16; 172.16/12; };
15
16options {
17	query-source address 10.53.0.2;
18	notify-source 10.53.0.2;
19	transfer-source 10.53.0.2;
20	port @PORT@;
21	pid-file "named.pid";
22	listen-on { 10.53.0.2; };
23	listen-on-v6 { none; };
24	recursion yes;
25	notify yes;
26	dnssec-enable yes;
27	dnssec-validation yes;
28
29	dns64 2001:aaaa::/96 {
30		clients { 10.53.0.2; };
31		mapped { !rfc1918; any; };
32		exclude { 2001:eeee::/32; 64:FF9B::/96; ::ffff:0000:0000/96; };
33		suffix ::;
34	};
35
36	dns64 64:FF9B::/96 {
37		clients { 10.53.0.1; };
38		mapped { !192.228.79.201; !rfc1918; any; };
39		exclude { 64:FF9B::/96; ::ffff:0000:0000/96; };
40		suffix ::;
41	};
42
43	dns64 2001:bbbb::/96 {
44		clients { 10.53.0.4; };
45		mapped { !rfc1918; any; };
46		suffix ::;
47	};
48
49	dns64-server "dns64.example.net.";
50	dns64-contact "hostmaster.example.net.";
51	dns64 2001:32::/32 { clients { 10.53.0.6; }; };
52	dns64 2001:40::/40 { clients { 10.53.0.6; }; };
53	dns64 2001:48::/48 { clients { 10.53.0.6; }; };
54	dns64 2001:56::/56 { clients { 10.53.0.6; }; };
55	dns64 2001:64::/64 { clients { 10.53.0.6; }; };
56
57	dns64 2001:96::/96 { clients { 10.53.0.7; }; };
58
59	response-policy { zone "rpz"; };
60};
61
62zone "." {
63	type hint;
64	file "../../common/root.hint";
65};
66
67zone "rpz" {
68	type master;
69	file "rpz.db";
70};
71