Home | History | Annotate | Line # | Download | only in ns2
      1 /*
      2  * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
      3  *
      4  * SPDX-License-Identifier: MPL-2.0
      5  *
      6  * This Source Code Form is subject to the terms of the Mozilla Public
      7  * License, v. 2.0.  If a copy of the MPL was not distributed with this
      8  * file, you can obtain one at https://mozilla.org/MPL/2.0/.
      9  *
     10  * See the COPYRIGHT file distributed with this work for additional
     11  * information regarding copyright ownership.
     12  */
     13 
     14 // NS2
     15 
     16 options {
     17 	query-source address 10.53.0.2;
     18 	notify-source 10.53.0.2;
     19 	transfer-source 10.53.0.2;
     20 	port @PORT@;
     21 	pid-file "named.pid";
     22 	listen-on { 10.53.0.2; };
     23 	listen-on-v6 { none; };
     24 	recursion no;
     25 	dnssec-validation no;
     26 	notify yes;
     27 };
     28 
     29 zone . {
     30        type hint;
     31        file "../../_common/root.hint";
     32 };
     33 
     34 zone "example" {
     35 	type primary;
     36 	file "example.db.signed";
     37 	allow-update { any; };
     38 };
     39 
     40 zone "sub2.example" {
     41 	type primary;
     42 	file "sub.db";
     43 };
     44 
     45 zone "signed-sub2.example" {
     46 	type primary;
     47 	file "sub.db";
     48 };
     49 
     50 zone "wildcard-secure.example" {
     51 	type primary;
     52 	file "wildcard-secure.example.db.signed";
     53 };
     54 
     55 zone "wildcard-nsec.example" {
     56 	type primary;
     57 	file "wildcard-nsec.example.db.signed";
     58 };
     59 
     60 zone "wildcard-nsec3.example" {
     61 	type primary;
     62 	file "wildcard-nsec3.example.db.signed";
     63 };
     64 
     65 zone "wildcard-nsec3-optout.example" {
     66 	type primary;
     67 	file "wildcard-nsec3-optout.example.db.signed";
     68 };
     69 
     70 zone "domain0.nil" { type primary; file "generic.db"; };
     71 zone "domain1.nil" { type primary; file "generic.db"; };
     72 zone "domain2.nil" { type primary; file "generic.db"; };
     73 zone "domain3.nil" { type primary; file "generic.db"; };
     74 zone "domain4.nil" { type primary; file "generic.db"; };
     75 zone "domain5.nil" { type primary; file "generic.db"; };
     76 zone "domain6.nil" { type primary; file "generic.db"; };
     77 zone "domain7.nil" { type primary; file "generic.db"; };
     78 zone "domain8.nil" { type primary; file "generic.db"; };
     79 zone "domain9.nil" { type primary; file "generic.db"; };
     80