2014-12-04 07:01:52 +11:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2016-06-27 14:56:38 +10:00
|
|
|
# Copyright (C) 2014, 2016 Internet Systems Consortium, Inc. ("ISC")
|
2014-12-04 07:01:52 +11:00
|
|
|
#
|
2016-06-27 14:56:38 +10:00
|
|
|
# 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/.
|
2014-12-04 07:01:52 +11:00
|
|
|
|
|
|
|
SYSTEMTESTTOP=../..
|
|
|
|
. $SYSTEMTESTTOP/conf.sh
|
|
|
|
|
2018-02-20 15:43:27 -08:00
|
|
|
echo_i "sign edns512-notcp"
|
2014-12-04 07:01:52 +11:00
|
|
|
|
|
|
|
zone=edns512-notcp
|
|
|
|
infile=edns512-notcp.db.in
|
|
|
|
zonefile=edns512-notcp.db
|
|
|
|
outfile=edns512-notcp.db.signed
|
|
|
|
|
|
|
|
keyname1=`$KEYGEN -r $RANDFILE -a RSASHA512 -b 4096 -n zone $zone 2> /dev/null`
|
|
|
|
keyname2=`$KEYGEN -f KSK -r $RANDFILE -a RSASHA512 -b 4096 -n zone $zone 2> /dev/null`
|
|
|
|
|
|
|
|
cat $infile $keyname1.key $keyname2.key >$zonefile
|
|
|
|
|
2014-12-05 07:28:29 +11:00
|
|
|
$SIGNER -r $RANDFILE -g -o $zone -f $outfile -e +30y $zonefile > /dev/null 2> signer.err || cat signer.err
|
2014-12-05 17:47:26 +11:00
|
|
|
|
|
|
|
grep -v '^;' $keyname2.key | $PERL -n -e '
|
|
|
|
local ($dn, $class, $type, $flags, $proto, $alg, @rest) = split;
|
|
|
|
local $key = join("", @rest);
|
|
|
|
print <<EOF
|
|
|
|
trusted-keys {
|
|
|
|
"$dn" $flags $proto $alg "$key";
|
|
|
|
};
|
|
|
|
EOF
|
|
|
|
' > trusted.conf
|
|
|
|
cp trusted.conf ../ns1
|