summaryrefslogtreecommitdiffstats
path: root/tests/data_plane/vpp_lite_topo/lisp_ip4o6.sh
diff options
context:
space:
mode:
authorFilip Tehlar <ftehlar@cisco.com>2016-07-06 13:38:18 +0200
committerFilip Tehlar <ftehlar@cisco.com>2016-07-06 14:07:54 +0200
commit12defda1182a88e98a20d63c32fe897359663ad7 (patch)
treef7e45f0da7617cd57b8aca5c3fca5a2021d69e07 /tests/data_plane/vpp_lite_topo/lisp_ip4o6.sh
parent572c17d6b9db44b8e0fb70222a13272fe41a4a7e (diff)
Refactor basic LISP tests
Change-Id: Ibc11d4d82006ea11580d3b3e269f81709eedb53a Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Diffstat (limited to 'tests/data_plane/vpp_lite_topo/lisp_ip4o6.sh')
-rw-r--r--tests/data_plane/vpp_lite_topo/lisp_ip4o6.sh41
1 files changed, 0 insertions, 41 deletions
diff --git a/tests/data_plane/vpp_lite_topo/lisp_ip4o6.sh b/tests/data_plane/vpp_lite_topo/lisp_ip4o6.sh
deleted file mode 100644
index edc3ffa..0000000
--- a/tests/data_plane/vpp_lite_topo/lisp_ip4o6.sh
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/usr/bin/env bash
-
-function ping_lisp {
- sudo ip netns exec vppns1 ping -c 15 6.0.2.2
- if [ $? -ne 0 ] ; then
- echo "Can not ping other machine"
- exit -1
- fi
-}
-
-sudo ip netns exec vppns1 \
- bash -c "
- ip link set dev lo up
- ip addr add 6.0.1.2/24 dev veth_vpp1
- ip route add 6.0.2.0/24 via 6.0.1.1
-"
-
-sudo ip netns exec vppns2 \
- bash -c "
- ip link set dev lo up
- ip addr add 6.0.2.2/24 dev veth_vpp2
- ip route add 6.0.1.0/24 via 6.0.2.1
-"
-
-post_curl "add-mapping" ${ODL_ADD_CONFIG1_4o6}
-post_curl "add-mapping" ${ODL_ADD_CONFIG2_4o6}
-
-ping_lisp
-
-expect << EOF
-spawn telnet localhost 5003
-expect -re ".*>"
-send "set int ip address del host-intervpp2 6:0:3::2/64\r"
-expect -re ".*>"
-send "set int ip address host-intervpp2 6:0:3::20/64\r"
-expect -re ".*>"
-EOF
-
-post_curl "update-mapping" ${ODL_REPLACE_CONFIG2_4o6}
-
-ping_lisp