63 lines
2.4 KiB
Plaintext
63 lines
2.4 KiB
Plaintext
/*
|
|
* Copyright (C) 2000, 2001, 2004, 2007, 2011, 2014, 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/.
|
|
*/
|
|
|
|
controls { /* empty */ };
|
|
|
|
options {
|
|
query-source address 10.53.0.2;
|
|
notify-source 10.53.0.2;
|
|
transfer-source 10.53.0.2;
|
|
port 5300;
|
|
pid-file "named.pid";
|
|
listen-on { 10.53.0.2; };
|
|
listen-on-v6 { none; };
|
|
recursion no;
|
|
notify yes;
|
|
startup-notify-rate 5;
|
|
};
|
|
|
|
include "../../common/controls.conf";
|
|
|
|
zone "." {
|
|
type hint;
|
|
file "../../common/root.hint";
|
|
};
|
|
|
|
zone "example" {
|
|
type master;
|
|
file "example.db";
|
|
// Check that named can handle a empty also-notify.
|
|
also-notify { /* empty */ };
|
|
};
|
|
|
|
masters noport { 10.53.0.4; };
|
|
|
|
masters x21 port 5301 { noport; };
|
|
|
|
zone x1 { type master; file "generic.db"; also-notify { 10.53.0.3; }; };
|
|
zone x2 { type master; file "generic.db"; also-notify { 10.53.0.3; }; };
|
|
zone x3 { type master; file "generic.db"; also-notify { 10.53.0.3; }; };
|
|
zone x4 { type master; file "generic.db"; also-notify { 10.53.0.3; }; };
|
|
zone x5 { type master; file "generic.db"; also-notify { 10.53.0.3; }; };
|
|
zone x6 { type master; file "generic.db"; also-notify { 10.53.0.3; }; };
|
|
zone x7 { type master; file "generic.db"; also-notify { 10.53.0.3; }; };
|
|
zone x8 { type master; file "generic.db"; also-notify { 10.53.0.3; }; };
|
|
zone x9 { type master; file "generic.db"; also-notify { 10.53.0.3; }; };
|
|
zone x10 { type master; file "generic.db"; also-notify { 10.53.0.3; }; };
|
|
zone x11 { type master; file "generic.db"; also-notify { 10.53.0.3; }; };
|
|
zone x12 { type master; file "generic.db"; also-notify { 10.53.0.3; }; };
|
|
zone x13 { type master; file "generic.db"; also-notify { 10.53.0.3; }; };
|
|
zone x14 { type master; file "generic.db"; also-notify { 10.53.0.3; }; };
|
|
zone x15 { type master; file "generic.db"; also-notify { 10.53.0.3; }; };
|
|
zone x16 { type master; file "generic.db"; also-notify { 10.53.0.3; }; };
|
|
zone x17 { type master; file "generic.db"; also-notify { 10.53.0.3; }; };
|
|
zone x18 { type master; file "generic.db"; also-notify { 10.53.0.3; }; };
|
|
zone x19 { type master; file "generic.db"; also-notify { 10.53.0.3; }; };
|
|
zone x20 { type master; file "generic.db"; also-notify { 10.53.0.3; }; };
|
|
zone x21 { type master; file "x21.db"; allow-update { any; }; also-notify { x21; }; };
|