named1.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// NS1
13
14key rndc_key {
15	secret "1234abcd8765";
16	algorithm hmac-sha256;
17};
18
19controls {
20	inet 10.53.0.1 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
21};
22
23options {
24	query-source address 10.53.0.1;
25	notify-source 10.53.0.1;
26	transfer-source 10.53.0.1;
27	port @PORT@;
28	pid-file "named.pid";
29	listen-on { 10.53.0.1; };
30	listen-on-v6 { none; };
31	recursion no;
32	notify yes;
33	dnssec-enable yes;
34	dnssec-validation yes;
35};
36
37zone "database" {
38	type master;
39	database "_builtin empty localhost. hostmaster.isc.org.";
40};
41