mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-22 01:59:26 +00:00
For the algorithm, CSK, KSK, ZSK rollovers, enabling DNSSEC and going insecure, add new zones to be tested in manual-mode.
42 lines
1.1 KiB
Django/Jinja
42 lines
1.1 KiB
Django/Jinja
/*
|
|
* 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.
|
|
*/
|
|
|
|
{% set zones = ["autosign", "manual"] %}
|
|
|
|
include "kasp.conf";
|
|
include "named.common.conf";
|
|
|
|
{% for tld in zones %}
|
|
zone "step1.enable-dnssec.@tld@" {
|
|
type primary;
|
|
file "step1.enable-dnssec.@tld@.db";
|
|
dnssec-policy "enable-dnssec-@tld@";
|
|
};
|
|
zone "step2.enable-dnssec.@tld@" {
|
|
type primary;
|
|
file "step2.enable-dnssec.@tld@.db";
|
|
dnssec-policy "enable-dnssec-@tld@";
|
|
};
|
|
zone "step3.enable-dnssec.@tld@" {
|
|
type primary;
|
|
file "step3.enable-dnssec.@tld@.db";
|
|
dnssec-policy "enable-dnssec-@tld@";
|
|
};
|
|
zone "step4.enable-dnssec.@tld@" {
|
|
type primary;
|
|
file "step4.enable-dnssec.@tld@.db";
|
|
dnssec-policy "enable-dnssec-@tld@";
|
|
};
|
|
|
|
{% endfor %}
|