Home | History | Annotate | Line # | Download | only in ns2
named.wildcard4.conf revision 1.1
      1 /*
      2  * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
      3  *
      4  * This Source Code Form is subject to the terms of the Mozilla Public
      5  * License, v. 2.0. If a copy of the MPL was not distributed with this
      6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
      7  *
      8  * See the COPYRIGHT file distributed with this work for additional
      9  * information regarding copyright ownership.
     10  */
     11 
     12 # common configuration
     13 include "named.conf.header";
     14 
     15 view "recursive" {
     16 	# policy configuration to be tested
     17 	response-policy {
     18 		zone "passthru.zone" policy passthru;
     19 		zone "given.zone" policy given;
     20 	} qname-wait-recurse yes
     21 	nsdname-enable yes
     22 	nsip-enable yes;
     23 
     24 	# policy zones to be tested
     25 	zone "passthru.zone" { type master; file "db.passthru"; };
     26 	zone "given.zone" { type master; file "db.given"; };
     27 
     28 	zone "." {
     29 		type hint;
     30 		file "root.hint";
     31 	};
     32 
     33 	recursion yes;
     34 	dnssec-validation yes;
     35 };
     36