aboutsummaryrefslogtreecommitdiff
path: root/testdata/fwd_three_service.tdir/fwd_three_service.test
diff options
context:
space:
mode:
Diffstat (limited to 'testdata/fwd_three_service.tdir/fwd_three_service.test')
-rw-r--r--testdata/fwd_three_service.tdir/fwd_three_service.test8
1 files changed, 4 insertions, 4 deletions
diff --git a/testdata/fwd_three_service.tdir/fwd_three_service.test b/testdata/fwd_three_service.tdir/fwd_three_service.test
index 6c5e34a7c305..7262cb724cbe 100644
--- a/testdata/fwd_three_service.tdir/fwd_three_service.test
+++ b/testdata/fwd_three_service.tdir/fwd_three_service.test
@@ -7,7 +7,7 @@
PRE="../.."
# do the test
echo "> dig www1.example.com."
-dig @localhost -p $UNBOUND_PORT www1.example.com. | tee outfile
+dig @127.0.0.1 -p $UNBOUND_PORT www1.example.com. | tee outfile
echo "> cat logfiles"
cat fwd.log
cat unbound.log
@@ -20,11 +20,11 @@ else
fi
echo "> do three queries"
-dig @localhost -p $UNBOUND_PORT www1.example.com. >outfile1 &
+dig @127.0.0.1 -p $UNBOUND_PORT www1.example.com. >outfile1 &
digpid1=$!
-dig @localhost -p $UNBOUND_PORT www2.example.com. >outfile2 &
+dig @127.0.0.1 -p $UNBOUND_PORT www2.example.com. >outfile2 &
digpid2=$!
-dig @localhost -p $UNBOUND_PORT www3.example.com. >outfile3 &
+dig @127.0.0.1 -p $UNBOUND_PORT www3.example.com. >outfile3 &
digpid3=$!
sleep 5
kill -9 $digpid1