setup.sh revision 247bf378605811d695e968dbe930a7fc45c0038e
#
*
*
# $Id: setup.sh,v 1.4 2011/09/02 21:15:35 each Exp $
echo "Usage: $0 [-s] <number of zones> [<records per zone>]"
echo " -s: use the same zone file all zones"
exit 1
}
fi
single_file=""
if [ $1 = "-s" ]; then
shift
fi
nzones=$1
shift
nrecords=5
cat << EOF
options {
directory "`pwd`";
listen-on { localhost; };
listen-on-v6 { localhost; };
port 5300;
allow-query { any; };
allow-transfer { localhost; };
allow-recursion { none; };
recursion no;
};
key rndc_key {
secret "1234abcd8765";
algorithm hmac-md5;
};
controls {
inet 127.0.0.1 port 9953 allow { any; } keys { rndc_key; };
};
logging {
channel basic {
file "`pwd`/named.log" versions 3 size 100m;
severity info;
print-time yes;
print-severity no;
print-category no;
};
category default {
basic;
};
};
EOF
if [ $single_file ]; then
echo "zone $zonename { type master; file \"smallzone.db\"; };"
else
fi
done