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
12key "update.example." {
13	algorithm "hmac-md5";
14	secret "c3Ryb25nIGVub3VnaCBmb3IgYSBtYW4gYnV0IG1hZGUgZm9yIGEgd29tYW4K";
15};
16
17options {
18	query-source address 10.53.0.1;
19	notify-source 10.53.0.1;
20	transfer-source 10.53.0.1;
21	port @PORT@;
22	pid-file "named.pid";
23	listen-on { 10.53.0.1; };
24	listen-on-v6 { none; };
25	recursion yes;
26	notify yes;
27};
28
29zone "example" {
30	type master;
31	file "example.db";
32	allow-update { key update.example.; 10.53.0.3; };
33};
34
35zone "example2" {
36	type master;
37	file "example2.db";
38	allow-update { key sig0.example2.; };
39};
40