mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-20 22:48:53 -04:00
the logging of error-report queries is no longer activated by the view's "send-report-channel" option; that now only configures the agent-domain value that is to be sent in authoritative responses. the warning that was logged when "send-agent-domain" was set to a value that is not a locally configured zone has been removed. error-report logging is now activated by the presence of an authoritative zone with the "log-report-channel" option set to "yes". this is not permitted in the root zone. NOTE: a zone with "log-report-channel yes;" should contain a "*._er" wildcard, but that requirement is not yet enforced.
18 lines
501 B
Text
18 lines
501 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.
|
|
*/
|
|
|
|
zone "." {
|
|
type primary;
|
|
file "root.db";
|
|
log-report-channel yes;
|
|
};
|