mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-25 10:59:35 -05:00
39 lines
856 B
Text
39 lines
856 B
Text
/*
|
|
* Copyright (C) 2011, 2013, 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.conf1,v 1.3 2011/03/01 23:48:06 tbox Exp $ */
|
|
|
|
// NS1
|
|
|
|
key rndc_key {
|
|
secret "1234abcd8765";
|
|
algorithm hmac-sha256;
|
|
};
|
|
|
|
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;
|
|
dnssec-enable yes;
|
|
dnssec-validation yes;
|
|
};
|
|
|
|
zone "database" {
|
|
type master;
|
|
database "_builtin empty localhost. hostmaster.isc.org.";
|
|
};
|