72 lines
1.9 KiB
Plaintext
72 lines
1.9 KiB
Plaintext
/*
|
|
* Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
|
|
*
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
|
|
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
* AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
|
|
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
|
|
controls { /* empty */ };
|
|
|
|
options {
|
|
query-source address 10.53.0.2;
|
|
notify-source 10.53.0.2;
|
|
transfer-source 10.53.0.2;
|
|
port 5300;
|
|
session-keyfile "session.key";
|
|
pid-file "named.pid";
|
|
statistics-file "named.stats";
|
|
listen-on { 10.53.0.2; };
|
|
listen-on-v6 { none; };
|
|
notify no;
|
|
|
|
rate-limit {
|
|
responses-per-second 2;
|
|
all-per-second 50;
|
|
slip 3;
|
|
exempt-clients { 10.53.0.7; };
|
|
|
|
// small enough to force a table expansion
|
|
min-table-size 75;
|
|
};
|
|
|
|
additional-from-cache no;
|
|
};
|
|
|
|
key rndc_key {
|
|
secret "1234abcd8765";
|
|
algorithm hmac-md5;
|
|
};
|
|
controls {
|
|
inet 10.53.0.2 port 9953 allow { any; } keys { rndc_key; };
|
|
};
|
|
|
|
/*
|
|
* These log settings have no effect unless "-g" is removed from ../../start.pl
|
|
*/
|
|
logging {
|
|
channel debug {
|
|
file "log-debug";
|
|
print-category yes; print-severity yes; severity debug 10;
|
|
};
|
|
channel queries {
|
|
file "log-queries";
|
|
print-category yes; print-severity yes; severity info;
|
|
};
|
|
category rate-limit { debug; queries; };
|
|
category queries { debug; queries; };
|
|
};
|
|
|
|
zone "." { type hint; file "hints"; };
|
|
|
|
zone "tld2."{ type master; file "tld2.db"; };
|