Home | History | Annotate | Line # | Download | only in ns6
      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 // NS6
     15 
     16 include "policies/kasp.conf";
     17 include "policies/csk1.conf";
     18 
     19 options {
     20 	query-source address 10.53.0.6;
     21 	notify-source 10.53.0.6;
     22 	transfer-source 10.53.0.6;
     23 	port @PORT@;
     24 	pid-file "named.pid";
     25 	listen-on { 10.53.0.6; };
     26 	listen-on-v6 { none; };
     27 	allow-transfer { any; };
     28 	recursion no;
     29 	key-directory ".";
     30 	dnssec-validation no;
     31 };
     32 
     33 key rndc_key {
     34 	secret "1234abcd8765";
     35 	algorithm @DEFAULT_HMAC@;
     36 };
     37 
     38 controls {
     39 	inet 10.53.0.6 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
     40 };
     41 
     42 zone "." {
     43 	type hint;
     44 	file "../../_common/root.hint.blackhole";
     45 };
     46 
     47 zone example {
     48 	type primary;
     49 	file "example.db";
     50 	dnssec-policy modified;
     51 };
     52