mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-27 12:02:10 -05:00
61 lines
1.1 KiB
Text
61 lines
1.1 KiB
Text
/*
|
|
* Copyright (C) 2010-2013, 2015, 2016 Internet Systems Consortium, Inc. ("ISC")
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
/* $Id: named.conf,v 1.6 2012/02/09 23:47:18 tbox Exp $ */
|
|
|
|
// NS4
|
|
|
|
controls { /* empty */ };
|
|
|
|
options {
|
|
query-source address 10.53.0.4 dscp 4;
|
|
notify-source 10.53.0.4 dscp 5;
|
|
transfer-source 10.53.0.4 dscp 6;
|
|
port 5300;
|
|
pid-file "named.pid";
|
|
listen-on { 10.53.0.4; };
|
|
listen-on-v6 { none; };
|
|
recursion no;
|
|
// minimal-responses yes;
|
|
/* test that named loads with root-delegation-only */
|
|
root-delegation-only;
|
|
};
|
|
|
|
zone "." {
|
|
type master;
|
|
file "root.db";
|
|
};
|
|
|
|
zone "moves" {
|
|
type master;
|
|
file "moves.db";
|
|
};
|
|
|
|
zone "child.server" {
|
|
type master;
|
|
file "child.server.db";
|
|
};
|
|
|
|
zone "tld" {
|
|
type master;
|
|
file "tld.db";
|
|
};
|
|
|
|
zone "broken" {
|
|
type master;
|
|
file "broken.db";
|
|
};
|
|
|
|
key rndc_key {
|
|
secret "1234abcd8765";
|
|
algorithm hmac-sha256;
|
|
};
|
|
|
|
controls {
|
|
inet 10.53.0.4 port 9953 allow { any; } keys { rndc_key; };
|
|
};
|