54 lines
1014 B
Plaintext
54 lines
1014 B
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/.
|
|
*/
|
|
|
|
/* $Id: named.conf,v 1.20 2011/03/12 04:59:47 tbox Exp $ */
|
|
|
|
include "../../common/rndc.key";
|
|
|
|
controls {
|
|
inet 10.53.0.1 port 9953 allow { any; } keys { rndc_key; };
|
|
};
|
|
|
|
options {
|
|
query-source address 10.53.0.1;
|
|
notify-source 10.53.0.1;
|
|
transfer-source 10.53.0.1;
|
|
port 5300;
|
|
pid-file "named.pid";
|
|
listen-on { 10.53.0.1; };
|
|
listen-on-v6 { none; };
|
|
recursion no;
|
|
notify yes;
|
|
};
|
|
|
|
zone "." {
|
|
type master;
|
|
file "root.db";
|
|
};
|
|
|
|
zone "slave" {
|
|
type master;
|
|
file "slave.db";
|
|
};
|
|
|
|
zone "edns-expire" {
|
|
type master;
|
|
file "edns-expire.db";
|
|
};
|
|
|
|
zone "axfr-too-big" {
|
|
type master;
|
|
file "axfr-too-big.db";
|
|
};
|
|
|
|
zone "ixfr-too-big" {
|
|
type master;
|
|
allow-update { any; };
|
|
file "ixfr-too-big.db";
|
|
};
|