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.
51 lines
1.3 KiB
Django/Jinja
51 lines
1.3 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.ksk-doubleksk.@tld@" {
|
|
type primary;
|
|
file "step1.ksk-doubleksk.@tld@.db";
|
|
dnssec-policy "ksk-doubleksk-@tld@";
|
|
};
|
|
zone "step2.ksk-doubleksk.@tld@" {
|
|
type primary;
|
|
file "step2.ksk-doubleksk.@tld@.db";
|
|
dnssec-policy "ksk-doubleksk-@tld@";
|
|
};
|
|
zone "step3.ksk-doubleksk.@tld@" {
|
|
type primary;
|
|
file "step3.ksk-doubleksk.@tld@.db";
|
|
dnssec-policy "ksk-doubleksk-@tld@";
|
|
};
|
|
zone "step4.ksk-doubleksk.@tld@" {
|
|
type primary;
|
|
file "step4.ksk-doubleksk.@tld@.db";
|
|
dnssec-policy "ksk-doubleksk-@tld@";
|
|
};
|
|
zone "step5.ksk-doubleksk.@tld@" {
|
|
type primary;
|
|
file "step5.ksk-doubleksk.@tld@.db";
|
|
dnssec-policy "ksk-doubleksk-@tld@";
|
|
};
|
|
zone "step6.ksk-doubleksk.@tld@" {
|
|
type primary;
|
|
file "step6.ksk-doubleksk.@tld@.db";
|
|
dnssec-policy "ksk-doubleksk-@tld@";
|
|
};
|
|
{% endfor %}
|