Blame bin/tests/system/nsupdate/ns9/named.conf.in

Packit Service ae04f2
/*
Packit Service ae04f2
 * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
Packit Service ae04f2
 *
Packit Service ae04f2
 * This Source Code Form is subject to the terms of the Mozilla Public
Packit Service ae04f2
 * License, v. 2.0. If a copy of the MPL was not distributed with this
Packit Service ae04f2
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
Packit Service ae04f2
 *
Packit Service ae04f2
 * See the COPYRIGHT file distributed with this work for additional
Packit Service ae04f2
 * information regarding copyright ownership.
Packit Service ae04f2
 */
Packit Service ae04f2
Packit Service ae04f2
options {
Packit Service ae04f2
	query-source address 10.53.0.9;
Packit Service ae04f2
	notify-source 10.53.0.9;
Packit Service ae04f2
	transfer-source 10.53.0.9;
Packit Service ae04f2
	port @PORT@;
Packit Service ae04f2
	pid-file "named.pid";
Packit Service ae04f2
	session-keyfile "session.key";
Packit Service ae04f2
	listen-on { 10.53.0.9; };
Packit Service ae04f2
	recursion no;
Packit Service ae04f2
	notify yes;
Packit Service ae04f2
	minimal-responses no;
Packit Service ae04f2
	tkey-gssapi-keytab "dns.keytab";
Packit Service ae04f2
};
Packit Service ae04f2
Packit Service ae04f2
key rndc_key {
Packit Service ae04f2
	secret "1234abcd8765";
Packit Service ae04f2
	algorithm hmac-sha256;
Packit Service ae04f2
};
Packit Service ae04f2
Packit Service ae04f2
controls {
Packit Service ae04f2
	inet 10.53.0.9 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
Packit Service ae04f2
};
Packit Service ae04f2
Packit Service ae04f2
zone "in-addr.arpa" {
Packit Service ae04f2
	type master;
Packit Service ae04f2
	file "in-addr.db";
Packit Service ae04f2
	update-policy {	grant EXAMPLE.COM ms-subdomain . PTR; };
Packit Service ae04f2
};
Packit Service ae04f2
Packit Service ae04f2
zone "example.com" {
Packit Service ae04f2
	type master;
Packit Service ae04f2
	file "example.com.db";
Packit Service ae04f2
	update-policy {
Packit Service ae04f2
		grant EXAMPLE.COM ms-self . ANY;
Packit Service ae04f2
		grant EXAMPLE.COM ms-subdomain _tcp.example.com SRV;
Packit Service ae04f2
	};
Packit Service ae04f2
};