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
12include "../../common/rndc.key";
13
14controls {
15	inet 10.53.0.1 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
16};
17
18options {
19	query-source address 10.53.0.1;
20	notify-source 10.53.0.1;
21	transfer-source 10.53.0.1;
22	port @PORT@;
23	allow-new-zones yes;
24	pid-file "named.pid";
25	listen-on { 10.53.0.1; };
26	listen-on port @EXTRAPORT1@ { 10.53.0.1; };
27	listen-on-v6 { none; };
28	notify no;
29	recursion no;
30	allow-transfer { any; };
31};
32
33zone "catalog1.example" {
34	type master;
35	file "catalog1.example.db";
36	allow-transfer { any; };
37	allow-update { any; };
38	also-notify { 10.53.0.2; };
39	notify explicit;
40};
41
42zone "catalog3.example" {
43	type master;
44	file "catalog3.example.db";
45	allow-transfer { any; };
46	allow-update { any; };
47	also-notify { 10.53.0.2; };
48	notify explicit;
49};
50
51zone "catalog4.example" {
52	type master;
53	file "catalog4.example.db";
54	allow-transfer { any; };
55	allow-update { any; };
56	also-notify { 10.53.0.2; };
57	notify explicit;
58};
59
60/* catalog5 is missing on purpose */
61
62key tsig_key. {
63	secret "LSAnCU+Z";
64	algorithm hmac-md5;
65};
66