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

File: [cvs.NetBSD.org] / src / external / mpl / bind / dist / bin / tests / system / zonechecks / ns1 / named.conf.in (download)

Revision 1.1.1.1.2.3, Fri Jan 18 08:49:44 2019 UTC (5 years, 2 months ago) by pgoyette
Branch: pgoyette-compat
CVS Tags: pgoyette-compat-merge-20190127
Changes since 1.1.1.1.2.2: +1 -1 lines

Synch with HEAD

/*
 * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * See the COPYRIGHT file distributed with this work for additional
 * information regarding copyright ownership.
 */

// NS1

options {
	query-source address 10.53.0.1;
	notify-source 10.53.0.1;
	transfer-source 10.53.0.1;
	port @PORT@;
	pid-file "named.pid";
	listen-on { 10.53.0.1; };
	listen-on-v6 { none; };
	recursion no;
	notify yes;
	dnssec-enable yes;
	dnssec-validation yes;
};

key rndc_key {
	secret "1234abcd8765";
	algorithm hmac-sha256;
};

controls {
	inet 10.53.0.1 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
};

view unused {
	match-clients { none; };

	zone "duplicate.example" {
		type master;
		file "duplicate.db";
	};
};

view primary {
	match-clients { any; };

	zone "master.example" {
		type primary;
		file "master.db";
		allow-update { any; };
		allow-transfer { any; };
		auto-dnssec maintain;
	};

	zone "bigserial.example" {
		type master;
		file "bigserial.db";
	};

	zone "reload.example" {
		type master;
		file "reload.db";
	};

	zone "duplicate.example" {
		type master;
		file "duplicate.db";
	};
};