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 	query-source-v6 address fd92:7065:b8e:ffff::1;
     17 	notify-source 10.53.0.1;
     18 	notify-source-v6 fd92:7065:b8e:ffff::1;
     19 	transfer-source 10.53.0.1;
     20 	transfer-source-v6 fd92:7065:b8e:ffff::1;
     21 	port @PORT@;
     22 	tls-port @TLSPORT@;
     23 	pid-file "named.pid";
     24 	listen-on { 10.53.0.1; };
     25 	listen-on-v6 { fd92:7065:b8e:ffff::1; };
     26 	listen-on-v6 tls ephemeral { fd92:7065:b8e:ffff::1; };
     27 	recursion no;
     28 	dnssec-validation no;
     29 	notify explicit;
     30 	minimal-responses no;
     31 	version none;  // make statistics independent of the version number
     32 };
     33 
     34 statistics-channels { inet 10.53.0.1 port @EXTRAPORT1@ allow { localhost; }; };
     35 
     36 key rndc_key {
     37 	secret "1234abcd8765";
     38 	algorithm @DEFAULT_HMAC@;
     39 };
     40 
     41 controls {
     42 	inet 10.53.0.1 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
     43 };
     44 
     45 server 10.53.0.3 {
     46 	transfer-format one-answer;
     47 };
     48 
     49 server fd92:7065:b8e:ffff::3 {
     50 	transfer-format one-answer;
     51 };
     52 
     53 zone "example" {
     54 	type primary;
     55 	file "example.db";
     56 	allow-transfer { any; };
     57 };
     58 
     59 zone "example-tcp" {
     60 	type primary;
     61 	file "example-tcp.db";
     62 	allow-transfer { any; };
     63 };
     64 
     65 zone "example-tls" {
     66 	type primary;
     67 	file "example-tls.db";
     68 	allow-transfer { any; };
     69 };
     70 
     71 zone "example-new" {
     72 	type primary;
     73 	file "example-new.db";
     74 	allow-transfer { any; };
     75 };
     76