blob: 6b381778d7de75b7a3008f273b049f72dd61d3a4 [file] [log] [blame]
Yi Huang9a118b32014-04-22 15:17:51 -07001#!/usr/bin/env bash
2usage=$'Usage: tcp-udp-tunnel-test.sh [tcp|udp][4|6]'
3if [ $# != 1 ]
4then
5 echo "$usage"
6 exit
7fi
8source ../multi-host.conf
9if [[ ($1 = "tcp4") || ($1 = "udp4") ]]
10then
11 ipaddr="$IP4_D1"
12else
13 ipaddr="[$IP6_D1]"
14fi
15echo "host D IP address $ipaddr"
16
17mkdir -p logs
18
19clean_up() {
20 r=$(ssh $CTRL_D "sudo killall ndn-traffic-server;\
21 sleep 1;\
22 sudo killall nfd" 2>&1)
23 r=$(sudo killall nfd 2>&1)
24}
25
26# start nfd on host A
Yi Huang53fa8712014-06-10 20:14:26 -070027sudo nfd &> logs/nfd.log &
28sleep 2
Yi Huang9a118b32014-04-22 15:17:51 -070029
30# start nfd and ndn-traffic-server on host D
31echo "starting nfd and ndn-traffic-server on host D..."
32workdir=$(pwd)
33ssh $CTRL_D "mkdir -p $workdir/logs;\
34 sudo nfd &> $workdir/logs/nfd.log &\
35 sleep 3;\
36 ndn-traffic-server $workdir/NDNTrafficServer.conf > $workdir/logs/server.log 2>&1 &"
37sleep 5
38
39# open a tunnel from host A to host D and set nexthop of ndn:/tunnel-test to D
40echo "preparing tunnel..."
Eric Newberry271f3582015-06-18 20:00:26 -070041nfdc add-nexthop ndn:/tunnel-test $1://$ipaddr
Yi Huang9a118b32014-04-22 15:17:51 -070042
43# run ndn-traffic client
44echo "running ndn-traffic client..."
45ndn-traffic -c 100 -i 100 NDNTrafficClient.conf > logs/client.log 2>&1
46
47# stop nfd on hostA
48echo "stopping nfd on host A..."
49sudo killall nfd
50
Yi Huang53fa8712014-06-10 20:14:26 -070051# stop ndn-traffic-server and nfd on hostD
52echo "stopping ndn-traffic-server and nfd on host D..."
Yi Huang9a118b32014-04-22 15:17:51 -070053clean_up
54
55# examine client log
56echo "analyzing results..."
57output=$(grep "Total Interest Loss" $workdir/logs/client.log | head -1 | cut -d= -f2 | cut -d' ' -f2 | cut -d% -f1)
Eric Newberryafb5c5f2015-06-09 08:57:58 -070058if [[ $output != 0?(.+(0)) ]]
Yi Huang9a118b32014-04-22 15:17:51 -070059then
60 echo "Expected no Interest Loss. Actual: $output%"
61 echo "For more information, please examine the log at \"$(pwd)/logs\""
62 exit 2
63fi
64echo "Tunnel Test PASSED"