1/*
2 * Copyright (C) 2006, 2008, 2010  Internet Systems Consortium, Inc. ("ISC")
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
9 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
10 * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
11 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
12 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
13 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
14 * PERFORMANCE OF THIS SOFTWARE.
15 */
16
17/* $Id: named.conf,v 1.5 2010/06/26 23:46:49 tbox Exp $ */
18
19// NS3
20
21controls { /* empty */ };
22
23options {
24	query-source address 10.53.0.7;
25	notify-source 10.53.0.7;
26	transfer-source 10.53.0.7;
27	port 5300;
28	pid-file "named.pid";
29	listen-on { 10.53.0.7; };
30	listen-on-v6 { none; };
31	recursion no;
32	notify yes;
33	dnssec-enable yes;
34	dnssec-validation yes;
35	minimal-responses yes;
36};
37
38zone "." {
39	type hint;
40	file "../../common/root.hint";
41};
42
43zone "nsec3.example" {
44	type slave;
45	masters { 10.53.0.3; };
46	file "nsec3.example.bk";
47};
48
49zone "optout.example" {
50	type slave;
51	masters { 10.53.0.3; };
52	file "optout.example.bk";
53};
54
55zone "nsec3-unknown.example" {
56	type slave;
57	masters { 10.53.0.3; };
58	file "nsec3-unknown.example.bk";
59};
60
61zone "optout-unknown.example" {
62	type slave;
63	masters { 10.53.0.3; };
64	file "optout-unknown.example.bk";
65};
66
67zone "multiple.example" {
68	type slave;
69	masters { 10.53.0.3; };
70	file "multiple.example.bk";
71};
72
73zone "nosoa.secure.example" {
74	type master;
75	file "nosoa.secure.example.db";
76};
77
78include "trusted.conf";
79