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-validation yes;
27
28	dns64 2001:aaaa::/96 {
29		clients { 10.53.0.2; };
30		mapped { !rfc1918; any; };
31		exclude { 2001:eeee::/32; 64:FF9B::/96; ::ffff:0000:0000/96; };
32		suffix ::;
33	};
34
35	dns64 64:FF9B::/96 {
36		clients { 10.53.0.1; };
37		mapped { !192.228.79.201; !rfc1918; any; };
38		exclude { 64:FF9B::/96; ::ffff:0000:0000/96; };
39		suffix ::;
40	};
41
42	dns64 2001:bbbb::/96 {
43		clients { 10.53.0.4; };
44		mapped { !rfc1918; any; };
45		suffix ::;
46	};
47
48	dns64-server "dns64.example.net.";
49	dns64-contact "hostmaster.example.net.";
50	dns64 2001:32::/32 { clients { 10.53.0.6; }; };
51	dns64 2001:40::/40 { clients { 10.53.0.6; }; };
52	dns64 2001:48::/48 { clients { 10.53.0.6; }; };
53	dns64 2001:56::/56 { clients { 10.53.0.6; }; };
54	dns64 2001:64::/64 { clients { 10.53.0.6; }; };
55
56	dns64 2001:96::/96 { clients { 10.53.0.7; }; };
57
58	response-policy { zone "rpz"; };
59};
60
61zone "." {
62	type hint;
63	file "../../common/root.hint";
64};
65
66zone "rpz" {
67	type primary;
68	file "rpz.db";
69};
70