Home | History | Annotate | Line # | Download | only in ns5
      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 // NS5
     15 
     16 include "../../_common/rndc.key";
     17 
     18 controls {
     19 	inet 10.53.0.5 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
     20 };
     21 
     22 options {
     23 	query-source address 10.53.0.5;
     24 	notify-source 10.53.0.5;
     25 	transfer-source 10.53.0.5;
     26 	port @PORT@;
     27 	pid-file "named.pid";
     28 	listen-on { 10.53.0.5; };
     29 	listen-on-v6 { none; };
     30 	dnssec-validation no;
     31 	recursion no;
     32 	notify yes;
     33 	notify-delay 0;
     34 	servfail-ttl 0;
     35 };
     36 
     37 dnssec-policy "inline" {
     38 	keys {
     39 		ksk key-directory lifetime unlimited algorithm @DEFAULT_ALGORITHM@;
     40 		zsk key-directory lifetime unlimited algorithm @DEFAULT_ALGORITHM@;
     41 	};
     42 };
     43 
     44 zone "bits" {
     45 	type secondary;
     46 	primaries { 10.53.0.2; };
     47 	file "bits.bk";
     48 	dnssec-policy inline;
     49 	inline-signing yes;
     50 };
     51