[BACK]Return to named.conf.in CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / external / mpl / bind / dist / bin / tests / system / autosign / ns2

Annotation of src/external/mpl/bind/dist/bin/tests/system/autosign/ns2/named.conf.in, Revision 1.1.1.3

1.1       christos    1: /*
                      2:  * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
                      3:  *
                      4:  * This Source Code Form is subject to the terms of the Mozilla Public
                      5:  * License, v. 2.0. If a copy of the MPL was not distributed with this
                      6:  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
                      7:  *
                      8:  * See the COPYRIGHT file distributed with this work for additional
                      9:  * information regarding copyright ownership.
                     10:  */
                     11:
                     12: // NS2
                     13:
                     14: options {
                     15:        query-source address 10.53.0.2;
                     16:        notify-source 10.53.0.2;
                     17:        transfer-source 10.53.0.2;
                     18:        port @PORT@;
                     19:        pid-file "named.pid";
                     20:        listen-on { 10.53.0.2; };
                     21:        listen-on-v6 { none; };
                     22:        recursion no;
                     23:        notify yes;
                     24:        dnssec-validation yes;
                     25:        dnssec-loadkeys-interval 30;
                     26: };
                     27:
                     28: key rndc_key {
                     29:        secret "1234abcd8765";
                     30:        algorithm hmac-sha256;
                     31: };
                     32:
                     33: controls {
                     34:        inet 10.53.0.2 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
                     35: };
                     36:
                     37: zone "." {
                     38:        type hint;
                     39:        file "../../common/root.hint";
                     40: };
                     41:
                     42: zone "example" {
1.1.1.3 ! christos   43:        type primary;
1.1       christos   44:        file "example.db";
                     45:        allow-query { any; };
                     46:        allow-transfer { any; };
                     47:        allow-update { any; };
                     48:        auto-dnssec maintain;
                     49: };
                     50:
                     51: zone "bar" {
1.1.1.3 ! christos   52:        type primary;
1.1       christos   53:        file "bar.db";
                     54:        allow-query { any; };
                     55:        allow-transfer { any; };
                     56:        allow-update { any; };
                     57:        auto-dnssec maintain;
                     58:        dnssec-dnskey-kskonly yes;
                     59: };
                     60:
                     61: zone "private.secure.example" {
1.1.1.3 ! christos   62:        type primary;
1.1       christos   63:        file "private.secure.example.db";
                     64:        allow-query { any; };
                     65:        allow-transfer { any; };
                     66:        allow-update { any; };
                     67:        auto-dnssec maintain;
                     68: };
                     69:
                     70: zone "insecure.secure.example" {
1.1.1.3 ! christos   71:        type primary;
1.1       christos   72:        file "insecure.secure.example.db";
                     73:        allow-query { any; };
                     74:        allow-transfer { any; };
                     75:        allow-update { any; };
                     76:        auto-dnssec maintain;
                     77: };
                     78:
                     79: zone "child.nsec3.example" {
1.1.1.3 ! christos   80:        type primary;
1.1       christos   81:        file "child.nsec3.example.db";
                     82:        allow-query { any; };
                     83:        allow-transfer { any; };
                     84:        allow-update { any; };
                     85:        auto-dnssec maintain;
                     86: };
                     87:
                     88: zone "child.optout.example" {
1.1.1.3 ! christos   89:        type primary;
1.1       christos   90:        file "child.optout.example.db";
                     91:        allow-query { any; };
                     92:        allow-transfer { any; };
                     93:        allow-update { any; };
                     94:        auto-dnssec maintain;
                     95: };
                     96:
                     97: include "trusted.conf";

CVSweb <webmaster@jp.NetBSD.org>