60 lines
1.4 KiB
Plaintext
60 lines
1.4 KiB
Plaintext
/*
|
|
* Copyright (C) 2004, 2006, 2007, 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.conf,v 1.10 2011/05/26 23:47:28 tbox Exp $ */
|
|
|
|
/*
|
|
* Choose a keyname that is unlikely to clash with any real key names.
|
|
* This allows it to be added to the system's rndc.conf with minimal
|
|
* likelyhood of collision.
|
|
*
|
|
* e.g.
|
|
* key "cc64b3d1db63fc88d7cb5d2f9f57d258" {
|
|
* algorithm hmac-sha256;
|
|
* secret "34f88008d07deabbe65bd01f1d233d47";
|
|
* };
|
|
*
|
|
* server "10.53.0.5" {
|
|
* key cc64b3d1db63fc88d7cb5d2f9f57d258;
|
|
* port 5353;
|
|
* };
|
|
*
|
|
* rndc -s 10.53.0.5 <command>
|
|
*/
|
|
|
|
key "cc64b3d1db63fc88d7cb5d2f9f57d258" {
|
|
algorithm hmac-sha256;
|
|
secret "34f88008d07deabbe65bd01f1d233d47";
|
|
};
|
|
|
|
controls {
|
|
inet 10.53.0.5 port 5353 allow { any; }
|
|
keys { cc64b3d1db63fc88d7cb5d2f9f57d258; };
|
|
};
|
|
|
|
include "trusted.conf";
|
|
include "trusted-dlv.conf";
|
|
|
|
options {
|
|
query-source address 10.53.0.5;
|
|
notify-source 10.53.0.5;
|
|
transfer-source 10.53.0.5;
|
|
port 5300;
|
|
pid-file "named.pid";
|
|
listen-on { 10.53.0.5; };
|
|
listen-on-v6 { none; };
|
|
recursion yes;
|
|
acache-enable yes;
|
|
notify yes;
|
|
dnssec-enable yes;
|
|
dnssec-validation yes;
|
|
dnssec-lookaside "." trust-anchor "dlv.utld";
|
|
};
|
|
|
|
zone "." { type hint; file "hints"; };
|