mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-25 02:42:33 -05:00
39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2011-2014, 2016 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/.
|
|
|
|
SYSTEMTESTTOP=..
|
|
. $SYSTEMTESTTOP/conf.sh
|
|
|
|
$SHELL clean.sh
|
|
|
|
test -r $RANDFILE || $GENRANDOM 400 $RANDFILE
|
|
|
|
$SHELL ../genzone.sh 2 >ns2/nil.db
|
|
$SHELL ../genzone.sh 2 >ns2/other.db
|
|
$SHELL ../genzone.sh 2 >ns2/static.db
|
|
|
|
$SHELL ../genzone.sh 2 >ns6/huge.zone.db
|
|
awk 'END { for (i = 1; i <= 1000000; i++)
|
|
printf "host%d IN A 10.53.0.6\n", i; }' < /dev/null >> ns6/huge.zone.db
|
|
|
|
cat ns4/named.conf.in > ns4/named.conf
|
|
cat ns6/named.conf.in > ns6/named.conf
|
|
|
|
make_key () {
|
|
$RNDCCONFGEN -r $RANDFILE -k key$1 -A $2 -s 10.53.0.4 -p 995${1} \
|
|
> ns4/key${1}.conf
|
|
egrep -v '(^# Start|^# End|^# Use|^[^#])' ns4/key$1.conf | cut -c3- | \
|
|
sed 's/allow { 10.53.0.4/allow { any/' >> ns4/named.conf
|
|
}
|
|
|
|
make_key 1 hmac-md5
|
|
make_key 2 hmac-sha1
|
|
make_key 3 hmac-sha224
|
|
make_key 4 hmac-sha256
|
|
make_key 5 hmac-sha384
|
|
make_key 6 hmac-sha512
|