9e34d1109add490a66545d1bf2fca96f06294e8c
[one.git] / tests / data_plane / vpp_lite_topo / test_driver / multihoming.sh
1 source config.sh
2 source odl_utils.sh
3 source topologies/multihoming_topo.sh
4
5 ODL_CONFIG_FILE1="vpp1.json"
6 ODL_CONFIG_FILE2="vpp2.json"
7 ODL_CONFIG_FILE3="update_vpp2.json"
8
9 if [ "$1" == "clean" ] ; then
10   multihoming_topo_clean
11   exit 0
12 fi
13
14 if [[ $(id -u) != 0 ]]; then
15   echo "Error: run this as a root."
16   exit 1
17 fi
18
19 function test_multihoming
20 {
21   if [ "$3" != "no_setup" ] ; then
22     multihoming_topo_setup
23   fi
24
25   maybe_pause
26
27   test_result=1
28
29   ip netns exec vppns1 "${1}" -w 15 -c 1 "${2}"
30   assert_rc_ok $? multihoming_topo_clean "No response received!"
31
32   # do some port sweeping to see that load balancing works
33   ip netns exec vppns1 nc -n -z "${2}" 1-1000 > /dev/null 2>&1
34
35   # check that it works
36   pkts=$(echo "show int" | nc 0 5002 | grep host-intervpp11 | awk '{print $6}' | tr -d '\r')
37
38   if [ $pkts -gt 450 ] && [ $pkts -lt 550 ] ; then
39     rc=0
40   else
41     rc=1
42   fi
43
44   if [ $rc -ne 0 ] ; then
45     echo "Load balancing doesn't work!"
46
47     maybe_pause
48
49     multihoming_topo_clean
50     exit $test_result
51   fi
52
53   maybe_pause
54
55   # change IP addresses of destination RLOC
56   echo "set int ip address del host-intervpp12 6.0.3.2/24" | nc 0 5003
57   echo "set int ip address host-intervpp12 6.0.3.20/24" | nc 0 5003
58   echo "set int ip address del host-intervpp12 6:0:3::2/64" | nc 0 5003
59   echo "set int ip address host-intervpp12 6:0:3::20/64" | nc 0 5003
60   post_curl "update-mapping" ${ODL_CONFIG_FILE3}
61
62   ip netns exec vppns1 "${1}" -w 15 -c 1 "${2}"
63   rc=$?
64
65   # test done
66
67   maybe_pause
68
69   multihoming_topo_clean
70   print_status $rc "No ICMP response!"
71   exit $test_result
72 }