71 lines
2.1 KiB
Plaintext
71 lines
2.1 KiB
Plaintext
/*
|
|
* Copyright (C) 2004, 2007, 2009, 2013-2015 Internet Systems Consortium, Inc. ("ISC")
|
|
* Copyright (C) 2000, 2001 Internet Software Consortium.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
/* $Id: named.conf,v 1.15 2009/05/29 23:47:49 tbox Exp $ */
|
|
|
|
controls { /* empty */ };
|
|
|
|
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 yes;
|
|
acache-enable yes;
|
|
deny-answer-addresses { 192.0.2.0/24; 2001:db8:beef::/48; }
|
|
except-from { "example.org"; };
|
|
deny-answer-aliases { "example.org"; }
|
|
except-from { "goodcname.example.net";
|
|
"gooddname.example.net"; };
|
|
allow-query {!10.53.0.8; any; };
|
|
attach-cache "globalcache";
|
|
};
|
|
|
|
server 10.42.23.3/32 {
|
|
notify-source 10.42.22.1;
|
|
query-source address 10.42.22.1 port 0;
|
|
transfer-source 10.42.22.1;
|
|
};
|
|
|
|
server fd92:7065:b8e:ffff::1000 {
|
|
notify-source-v6 fd92:7065:b8e:ffff::1001;
|
|
query-source-v6 address fd92:7065:b8e:ffff::1001 port 0;
|
|
transfer-source-v6 fd92:7065:b8e:ffff::1001;
|
|
};
|
|
|
|
/*
|
|
* Must be first view so that there is a CH cache with name
|
|
* "globalcache" before the recursive "default"/IN view is configured.
|
|
*/
|
|
view "class" chaos {
|
|
match-clients { none; };
|
|
};
|
|
|
|
/*
|
|
* Must be second view so that so that we can check we don't attach to the
|
|
* "globalcache"/CH cache.
|
|
*/
|
|
view "default" {
|
|
zone "." {
|
|
type hint;
|
|
file "root.hint";
|
|
};
|
|
};
|