summaryrefslogtreecommitdiffstats
path: root/tests/data_plane/vpp_lite_topo/test_driver/basic_no_odl.sh
diff options
context:
space:
mode:
authorFilip Tehlar <ftehlar@cisco.com>2016-08-10 15:15:40 +0200
committerFilip Tehlar <ftehlar@cisco.com>2016-08-10 15:15:40 +0200
commitf73cae4cda445b5bed88b8baf7d3536a947aa7ef (patch)
tree6eff937e20b1bc35d1e1293e758369157e568f4d /tests/data_plane/vpp_lite_topo/test_driver/basic_no_odl.sh
parent8912471cd3744954661f702ee8cf8cc58957e4b8 (diff)
Fix wrong ipv6 address length
Change-Id: I2df0796d5950dcba7071e23bb496d6bdded0806c Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Diffstat (limited to 'tests/data_plane/vpp_lite_topo/test_driver/basic_no_odl.sh')
-rw-r--r--tests/data_plane/vpp_lite_topo/test_driver/basic_no_odl.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/data_plane/vpp_lite_topo/test_driver/basic_no_odl.sh b/tests/data_plane/vpp_lite_topo/test_driver/basic_no_odl.sh
index f7fa31c..9df6ebb 100644
--- a/tests/data_plane/vpp_lite_topo/test_driver/basic_no_odl.sh
+++ b/tests/data_plane/vpp_lite_topo/test_driver/basic_no_odl.sh
@@ -32,11 +32,13 @@ function test_basic_no_odl
# change IP addresses of destination RLOC
echo "set int ip address del host-intervpp2 6.0.3.2/24" | nc 0 5003
echo "set int ip address host-intervpp2 6.0.3.20/24" | nc 0 5003
- echo "set int ip address del host-intervpp2 6:0:3::2/24" | nc 0 5003
- echo "set int ip address host-intervpp2 6:0:3::20/24" | nc 0 5003
+ echo "set int ip address del host-intervpp2 6:0:3::2/64" | nc 0 5003
+ echo "set int ip address host-intervpp2 6:0:3::20/64" | nc 0 5003
echo "lisp remote-mapping del vni 0 eid 6.0.2.0/24 rloc 6.0.3.2" | nc 0 5002
echo "lisp remote-mapping add vni 0 eid 6.0.2.0/24 rloc 6.0.3.20" | nc 0 5002
+ echo "lisp remote-mapping del vni 0 eid 6:0:2::0/64 rloc 6:0:3::2" | nc 0 5002
+ echo "lisp remote-mapping add vni 0 eid 6:0:2::0/64 rloc 6:0:3::20" | nc 0 5002
ip netns exec vppns1 "${1}" -w 15 -c 1 "${2}"
rc=$?