Blame bin/tests/system/catz/ns1/named.conf.in

Packit 5ce601
/*
Packit 5ce601
 * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
Packit 5ce601
 *
Packit 5ce601
 * This Source Code Form is subject to the terms of the Mozilla Public
Packit 5ce601
 * License, v. 2.0. If a copy of the MPL was not distributed with this
Packit Service 704ed8
 * file, you can obtain one at https://mozilla.org/MPL/2.0/.
Packit 5ce601
 *
Packit 5ce601
 * See the COPYRIGHT file distributed with this work for additional
Packit 5ce601
 * information regarding copyright ownership.
Packit 5ce601
 */
Packit 5ce601
Packit 5ce601
include "../../common/rndc.key";
Packit 5ce601
Packit 5ce601
controls {
Packit 5ce601
	inet 10.53.0.1 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
Packit 5ce601
};
Packit 5ce601
Packit 5ce601
options {
Packit 5ce601
	query-source address 10.53.0.1;
Packit 5ce601
	notify-source 10.53.0.1;
Packit 5ce601
	transfer-source 10.53.0.1;
Packit 5ce601
	port @PORT@;
Packit 5ce601
	allow-new-zones yes;
Packit 5ce601
	pid-file "named.pid";
Packit 5ce601
	listen-on { 10.53.0.1; };
Packit 5ce601
	listen-on port @EXTRAPORT1@ { 10.53.0.1; };
Packit 5ce601
	listen-on-v6 { none; };
Packit 5ce601
	notify no;
Packit 5ce601
	recursion no;
Packit 5ce601
	allow-transfer { any; };
Packit 5ce601
};
Packit 5ce601
Packit 5ce601
zone "catalog1.example" {
Packit 5ce601
	type master;
Packit 5ce601
	file "catalog1.example.db";
Packit 5ce601
	allow-transfer { any; };
Packit 5ce601
	allow-update { any; };
Packit 5ce601
	also-notify { 10.53.0.2; };
Packit 5ce601
	notify explicit;
Packit 5ce601
};
Packit 5ce601
Packit 5ce601
zone "catalog3.example" {
Packit 5ce601
	type master;
Packit 5ce601
	file "catalog3.example.db";
Packit 5ce601
	allow-transfer { any; };
Packit 5ce601
	allow-update { any; };
Packit 5ce601
	also-notify { 10.53.0.2; };
Packit 5ce601
	notify explicit;
Packit 5ce601
};
Packit 5ce601
Packit 5ce601
zone "catalog4.example" {
Packit 5ce601
	type master;
Packit 5ce601
	file "catalog4.example.db";
Packit 5ce601
	allow-transfer { any; };
Packit 5ce601
	allow-update { any; };
Packit 5ce601
	also-notify { 10.53.0.2; };
Packit 5ce601
	notify explicit;
Packit 5ce601
};
Packit 5ce601
Packit 5ce601
/* catalog5 is missing on purpose */
Packit 5ce601
Packit 5ce601
key tsig_key. {
Packit 5ce601
	secret "LSAnCU+Z";
Packit Service d3afd5
	algorithm hmac-md5;
Packit 5ce601
};