Home | History | Annotate | Line # | Download | only in ns3
      1 /*
      2  * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
      3  *
      4  * SPDX-License-Identifier: MPL-2.0
      5  *
      6  * This Source Code Form is subject to the terms of the Mozilla Public
      7  * License, v. 2.0.  If a copy of the MPL was not distributed with this
      8  * file, you can obtain one at https://mozilla.org/MPL/2.0/.
      9  *
     10  * See the COPYRIGHT file distributed with this work for additional
     11  * information regarding copyright ownership.
     12  */
     13 
     14 {% set zones = ["autosign", "manual"] %}
     15 
     16 include "kasp.conf";
     17 include "named.common.conf";
     18 
     19 {% for tld in zones %}
     20 zone "step1.ksk-doubleksk.@tld@" {
     21 	type primary;
     22 	file "step1.ksk-doubleksk.@tld@.db";
     23 	dnssec-policy "ksk-doubleksk-@tld@";
     24 };
     25 zone "step2.ksk-doubleksk.@tld@" {
     26 	type primary;
     27 	file "step2.ksk-doubleksk.@tld@.db";
     28 	dnssec-policy "ksk-doubleksk-@tld@";
     29 };
     30 zone "step3.ksk-doubleksk.@tld@" {
     31 	type primary;
     32 	file "step3.ksk-doubleksk.@tld@.db";
     33 	dnssec-policy "ksk-doubleksk-@tld@";
     34 };
     35 zone "step4.ksk-doubleksk.@tld@" {
     36 	type primary;
     37 	file "step4.ksk-doubleksk.@tld@.db";
     38 	dnssec-policy "ksk-doubleksk-@tld@";
     39 };
     40 zone "step5.ksk-doubleksk.@tld@" {
     41 	type primary;
     42 	file "step5.ksk-doubleksk.@tld@.db";
     43 	dnssec-policy "ksk-doubleksk-@tld@";
     44 };
     45 zone "step6.ksk-doubleksk.@tld@" {
     46 	type primary;
     47 	file "step6.ksk-doubleksk.@tld@.db";
     48 	dnssec-policy "ksk-doubleksk-@tld@";
     49 };
     50 {% endfor %}
     51