The kasp system test was getting pretty large, and more tests are on
the way. Time to split up. Move tests that are related to migrating
to dnssec-policy to a separate directory 'keymgr2kasp'.
(cherry picked from commit 5389172111)
65 lines
1.4 KiB
Plaintext
65 lines
1.4 KiB
Plaintext
/*
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
*
|
|
* 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 http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
* information regarding copyright ownership.
|
|
*/
|
|
|
|
// NS6
|
|
|
|
include "policies/kasp.conf";
|
|
include "policies/csk1.conf";
|
|
|
|
options {
|
|
query-source address 10.53.0.6;
|
|
notify-source 10.53.0.6;
|
|
transfer-source 10.53.0.6;
|
|
port @PORT@;
|
|
pid-file "named.pid";
|
|
listen-on { 10.53.0.6; };
|
|
listen-on-v6 { none; };
|
|
allow-transfer { any; };
|
|
recursion no;
|
|
key-directory ".";
|
|
};
|
|
|
|
key rndc_key {
|
|
secret "1234abcd8765";
|
|
algorithm hmac-sha256;
|
|
};
|
|
|
|
controls {
|
|
inet 10.53.0.6 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
|
|
};
|
|
|
|
/* These zones are going insecure. */
|
|
zone "step1.going-insecure.kasp" {
|
|
type master;
|
|
file "step1.going-insecure.kasp.db";
|
|
dnssec-policy "unsigning";
|
|
};
|
|
|
|
zone "step1.going-insecure-dynamic.kasp" {
|
|
type master;
|
|
file "step1.going-insecure-dynamic.kasp.db";
|
|
dnssec-policy "unsigning";
|
|
allow-update { any; };
|
|
};
|
|
|
|
/* These are alorithm rollover test zones. */
|
|
zone "step1.algorithm-roll.kasp" {
|
|
type primary;
|
|
file "step1.algorithm-roll.kasp.db";
|
|
dnssec-policy "rsasha1";
|
|
};
|
|
|
|
zone "step1.csk-algorithm-roll.kasp" {
|
|
type primary;
|
|
file "step1.csk-algorithm-roll.kasp.db";
|
|
dnssec-policy "csk-algoroll";
|
|
};
|