bind9/bin/tests/system/checkconf/inline-good.conf

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
854 B
Text
Raw Normal View History

2013-06-05 19:46:14 -04:00
/*
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
*
* SPDX-License-Identifier: MPL-2.0
*
2013-06-05 19:46:14 -04:00
* 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 https://mozilla.org/MPL/2.0/.
*
2013-06-05 19:46:14 -04:00
* See the COPYRIGHT file distributed with this work for additional
* information regarding copyright ownership.
*/
acl "transferees" {};
remote-servers "stealthPrimaries" {127.0.0.1;};
remote-servers "publicSecondaries" {127.0.0.1;};
zone "example.net" {
type secondary;
2013-09-15 20:14:07 -04:00
file "/var/cache/bind/example.net.db";
key-directory "/var/lib/bind/example.net";
dnssec-policy default;
2013-09-15 20:14:07 -04:00
inline-signing yes;
primaries { stealthPrimaries; };
2013-09-15 20:14:07 -04:00
notify explicit;
also-notify { publicSecondaries; };
2013-09-15 20:14:07 -04:00
allow-transfer { localhost; transferees; };
};