mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-25 10:59:35 -05:00
53 lines
1.9 KiB
Bash
53 lines
1.9 KiB
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 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
|
|
|
|
RNDCCMD="$RNDC -p 9953 -c ../common/rndc.conf"
|
|
|
|
status=0
|
|
|
|
echo "I:initialize counters"
|
|
$RNDCCMD -s 10.53.0.1 stats > /dev/null 2>&1
|
|
$RNDCCMD -s 10.53.0.2 stats > /dev/null 2>&1
|
|
ntcp10=`grep "TCP requests received" ns1/named.stats | tail -1 | awk '{print $1}'`
|
|
ntcp20=`grep "TCP requests received" ns2/named.stats | tail -1 | awk '{print $1}'`
|
|
#echo ntcp10 ':' "$ntcp10"
|
|
#echo ntcp20 ':' "$ntcp20"
|
|
|
|
echo "I:check TCP transport"
|
|
ret=0
|
|
$DIG -p 5300 @10.53.0.3 txt.example. > dig.out.3
|
|
$RNDCCMD -s 10.53.0.1 stats > /dev/null 2>&1
|
|
$RNDCCMD -s 10.53.0.2 stats > /dev/null 2>&1
|
|
ntcp11=`grep "TCP requests received" ns1/named.stats | tail -1 | awk '{print $1}'`
|
|
ntcp21=`grep "TCP requests received" ns2/named.stats | tail -1 | awk '{print $1}'`
|
|
#echo ntcp11 ':' "$ntcp11"
|
|
#echo ntcp21 ':' "$ntcp21"
|
|
if [ "$ntcp10" -ge "$ntcp11" ]; then ret=1; fi
|
|
if [ "$ntcp20" -ne "$ntcp21" ]; then ret=1; fi
|
|
if [ $ret != 0 ]; then echo "I:failed"; fi
|
|
status=`expr $status + $ret`
|
|
|
|
echo "I:check TCP forwarder"
|
|
ret=0
|
|
$DIG -p 5300 @10.53.0.4 txt.example. > dig.out.4
|
|
$RNDCCMD -s 10.53.0.1 stats > /dev/null 2>&1
|
|
$RNDCCMD -s 10.53.0.2 stats > /dev/null 2>&1
|
|
ntcp12=`grep "TCP requests received" ns1/named.stats | tail -1 | awk '{print $1}'`
|
|
ntcp22=`grep "TCP requests received" ns2/named.stats | tail -1 | awk '{print $1}'`
|
|
#echo ntcp12 ':' "$ntcp12"
|
|
#echo ntcp22 ':' "$ntcp22"
|
|
if [ "$ntcp11" -ne "$ntcp12" ]; then ret=1; fi
|
|
if [ "$ntcp21" -ge "$ntcp22" ];then ret=1; fi
|
|
if [ $ret != 0 ]; then echo "I:failed"; fi
|
|
status=`expr $status + $ret`
|
|
|
|
echo "I:exit status: $status"
|
|
[ $status -eq 0 ] || exit 1
|