2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-22 18:19:42 +00:00

113 lines
2.7 KiB
Bash
Raw Normal View History

2000-05-17 22:38:50 +00:00
#!/bin/sh
#
# Perform tests
#
if [ -f dig.out.ns2 ]; then
rm -f dig.out.ns2
fi
if [ -f dig.out.ns3 ]; then
rm -f dig.out.ns3
fi
if [ -f dig.out.ns4 ]; then
rm -f dig.out.ns4
fi
# Make sure all of the servers are up
status=0;
../../../dig/dig +tcp +noadd +nosea +nostat +noquest +nocomm +nocmd . \
@10.53.0.2 soa > dig.out.ns2
status=`expr $status + $?`
grep ";" dig.out.ns2
../../../dig/dig +tcp +noadd +nosea +nostat +noquest +nocomm +nocmd . \
@10.53.0.3 soa > dig.out.ns3
status=`expr $status + $?`
grep ";" dig.out.ns3
../../../dig/dig +tcp +noadd +nosea +nostat +noquest +nocomm +nocmd . \
@10.53.0.4 soa > dig.out.ns4
status=`expr $status + $?`
grep ";" dig.out.ns4
2000-05-18 22:49:29 +00:00
rm -f dig.out.*
2000-05-17 22:38:50 +00:00
# Check the example. domain
../../../dig/dig +tcp +noadd +nosea +nostat +noquest +nocomm +nocmd \
a.example. @10.53.0.2 a > dig.out.ns2
status=`expr $status + $?`
grep ";" dig.out.ns2
../../../dig/dig +tcp +noadd +nosea +nostat +noquest +nocomm +nocmd \
a.example. @10.53.0.3 a > dig.out.ns3
status=`expr $status + $?`
grep ";" dig.out.ns3
2000-05-18 22:49:29 +00:00
perl ../digcomp.pl dig.out.ns2 dig.out.ns3
status=`expr $status + $?`
rm -f dig.out.*
../../../dig/dig +tcp +noadd +nosea +nostat +noquest +nocomm +nocmd +noauth \
a.example. @10.53.0.2 a > dig.out.ns2
status=`expr $status + $?`
grep ";" dig.out.ns2
../../../dig/dig +tcp +noadd +nosea +nostat +noquest +nocomm +nocmd +noauth \
2000-05-17 22:38:50 +00:00
a.example. @10.53.0.4 a > dig.out.ns4
status=`expr $status + $?`
2000-05-18 22:49:29 +00:00
grep ";" dig.out.ns2
2000-05-17 22:38:50 +00:00
perl ../digcomp.pl dig.out.ns2 dig.out.ns4
2000-05-18 22:49:29 +00:00
status=`expr $status + $?`
# Check the insecure.example domain
rm -f dig.out.*
../../../dig/dig +tcp +noadd +nosea +nostat +noquest +nocomm +nocmd \
a.insecure.example. @10.53.0.3 a > dig.out.ns3
status=`expr $status + $?`
grep ";" dig.out.ns3
../../../dig/dig +tcp +noadd +nosea +nostat +noquest +nocomm +nocmd \
a.insecure.example. @10.53.0.4 a > dig.out.ns4
status=`expr $status + $?`
grep ";" dig.out.ns4
perl ../digcomp.pl dig.out.ns3 dig.out.ns4
status=`expr $status + $?`
# Check the secure.example domain
rm -f dig.out.*
../../../dig/dig +tcp +noadd +nosea +nostat +noquest +nocomm +nocmd \
a.secure.example. @10.53.0.3 a > dig.out.ns3
status=`expr $status + $?`
grep ";" dig.out.ns3
../../../dig/dig +tcp +noadd +nosea +nostat +noquest +nocomm +nocmd \
a.secure.example. @10.53.0.4 a > dig.out.ns4
status=`expr $status + $?`
grep ";" dig.out.ns4
perl ../digcomp.pl dig.out.ns3 dig.out.ns4
status=`expr $status + $?`
# Check the bogus domain
rm -f dig.out.*
../../../dig/dig +tcp +noadd +nosea +nostat +noquest +nocmd \
a.bogus.example. @10.53.0.4 a > dig.out.ns4
grep "SERVFAIL" dig.out.ns4 > /dev/null
status=`expr $status + $?`
echo "SERVFAIL is expected in the following:"
grep ";" dig.out.ns4
if [ $status != 0 ]; then
echo "FAILED with status $status"
fi