mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-21 22:28:34 -04:00
Add back the top blocks 'parental-agents', 'primaries', and 'masters' to the configuration. Do not document them as so many names for the same clause is confusing. This has a slight negative side effect that a top block 'primaries' can be referred to with a zone statement 'parental-agents' for example, but that shouldn't be a big issue.
28 lines
569 B
Text
28 lines
569 B
Text
/*
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
*
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*
|
|
* 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/.
|
|
*
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
* information regarding copyright ownership.
|
|
*/
|
|
|
|
remote-servers "one" {
|
|
1.2.3.4;
|
|
};
|
|
|
|
parental-agents "two" {
|
|
1.2.3.5;
|
|
};
|
|
|
|
primaries "three" {
|
|
1.2.3.6;
|
|
};
|
|
|
|
masters "four" {
|
|
1.2.3.7;
|
|
};
|