Home | History | Annotate | Line # | Download | only in ns1
      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 options {
     15 	query-source address 10.53.0.1;
     16 	notify-source 10.53.0.1;
     17 	transfer-source 10.53.0.1;
     18 	port @PORT@;
     19 	pid-file "named.pid";
     20 	listen-on { 10.53.0.1; };
     21 	listen-on-v6 { none; };
     22 	recursion no;
     23 	notify yes;
     24 	ixfr-from-differences yes;
     25 	check-integrity no;
     26 	dnssec-validation no;
     27 };
     28 
     29 zone "." {
     30 	type hint;
     31 	file "../../_common/root.hint";
     32 };
     33 
     34 zone "mx-cname-fail" {
     35 	type primary;
     36 	check-integrity yes;
     37 	check-mx-cname fail;
     38 	file "mx-cname.db";
     39 };
     40 
     41 zone "mx-cname-warn" {
     42 	type primary;
     43 	check-integrity yes;
     44 	check-mx-cname warn;
     45 	file "mx-cname.db";
     46 };
     47 
     48 zone "mx-cname-ignore" {
     49 	type primary;
     50 	check-integrity yes;
     51 	check-mx-cname ignore;
     52 	file "mx-cname.db";
     53 };
     54 
     55 zone "no-mx-cname-fail" {
     56 	type primary;
     57 	check-integrity no;
     58 	check-mx-cname fail;
     59 	file "mx-cname.db";
     60 };
     61 
     62 zone "no-mx-cname-warn" {
     63 	type primary;
     64 	check-integrity no;
     65 	check-mx-cname warn;
     66 	file "mx-cname.db";
     67 };
     68 
     69 zone "no-mx-cname-ignore" {
     70 	type primary;
     71 	check-integrity no;
     72 	check-mx-cname ignore;
     73 	file "mx-cname.db";
     74 };
     75 
     76 zone "srv-cname-fail" {
     77 	type primary;
     78 	check-integrity yes;
     79 	check-srv-cname fail;
     80 	file "srv-cname.db";
     81 };
     82 
     83 zone "srv-cname-warn" {
     84 	type primary;
     85 	check-integrity yes;
     86 	check-srv-cname warn;
     87 	file "srv-cname.db";
     88 };
     89 
     90 zone "srv-cname-ignore" {
     91 	type primary;
     92 	check-integrity yes;
     93 	check-srv-cname ignore;
     94 	file "srv-cname.db";
     95 };
     96 zone "no-srv-cname-fail" {
     97 	type primary;
     98 	check-integrity no;
     99 	check-srv-cname fail;
    100 	file "srv-cname.db";
    101 };
    102 
    103 zone "no-srv-cname-warn" {
    104 	type primary;
    105 	check-integrity no;
    106 	check-srv-cname warn;
    107 	file "srv-cname.db";
    108 };
    109 
    110 zone "no-srv-cname-ignore" {
    111 	type primary;
    112 	check-integrity no;
    113 	check-srv-cname ignore;
    114 	file "srv-cname.db";
    115 };
    116