mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-19 16:18:52 -04:00
There are many system tests where we set `dnssec-validation yes;` only
to also set `trust-anchors { };` which effectively disables the
validation.
This commit replaces this convoluted setup with just
`dnssec-validation no;`.
57 lines
1.9 KiB
Text
57 lines
1.9 KiB
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.
|
|
*/
|
|
|
|
include "../../_common/rndc.key";
|
|
|
|
controls {
|
|
inet 10.53.0.3 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
|
|
};
|
|
|
|
tls self-signed {
|
|
cert-file "../self-signed-cert.pem";
|
|
key-file "../self-signed-key.pem";
|
|
};
|
|
|
|
options {
|
|
pid-file "named.pid";
|
|
##
|
|
# generic test
|
|
listen-on port @PORT@ { 10.53.0.3; };
|
|
|
|
listen-on port @EXTRAPORT1@ proxy plain { 10.53.0.3; };
|
|
listen-on port @TLSPORT@ proxy encrypted tls self-signed { 10.53.0.3; };
|
|
listen-on port @EXTRAPORT2@ proxy plain tls self-signed { 10.53.0.3; };
|
|
listen-on port @HTTPSPORT@ proxy encrypted tls self-signed http default { 10.53.0.3; };
|
|
listen-on port @EXTRAPORT3@ proxy plain tls self-signed http default { 10.53.0.3; };
|
|
listen-on port @HTTPPORT@ proxy plain tls none http default { 10.53.0.3; };
|
|
|
|
listen-on-v6 port @EXTRAPORT1@ proxy plain { fd92:7065:b8e:ffff::3; };
|
|
listen-on-v6 port @TLSPORT@ proxy encrypted tls self-signed { fd92:7065:b8e:ffff::3; };
|
|
listen-on-v6 port @EXTRAPORT2@ proxy plain tls self-signed { fd92:7065:b8e:ffff::3; };
|
|
listen-on-v6 port @HTTPSPORT@ proxy encrypted tls self-signed http default { fd92:7065:b8e:ffff::3; };
|
|
listen-on-v6 port @EXTRAPORT3@ proxy plain tls self-signed http default { fd92:7065:b8e:ffff::3; };
|
|
listen-on-v6 port @HTTPPORT@ proxy plain tls none http default { fd92:7065:b8e:ffff::3; };
|
|
|
|
recursion no;
|
|
notify explicit;
|
|
statistics-file "named.stats";
|
|
dnssec-validation no;
|
|
tcp-initial-timeout 1200;
|
|
};
|
|
|
|
|
|
zone "example" {
|
|
type primary;
|
|
file "example.db";
|
|
allow-query { any; };
|
|
};
|