summaryrefslogtreecommitdiffstats
path: root/tests/data_plane/vpp_lite_topo
diff options
context:
space:
mode:
Diffstat (limited to 'tests/data_plane/vpp_lite_topo')
-rw-r--r--tests/data_plane/vpp_lite_topo/test_driver/rtr_single_iface.sh2
-rwxr-xr-xtests/data_plane/vpp_lite_topo/test_rtr_single_iface_4o4.sh2
-rwxr-xr-xtests/data_plane/vpp_lite_topo/test_rtr_single_iface_6o4.sh19
-rwxr-xr-xtests/data_plane/vpp_lite_topo/test_rtr_single_iface_6o6.sh20
-rw-r--r--tests/data_plane/vpp_lite_topo/topologies/rtr_single_iface.sh6
5 files changed, 46 insertions, 3 deletions
diff --git a/tests/data_plane/vpp_lite_topo/test_driver/rtr_single_iface.sh b/tests/data_plane/vpp_lite_topo/test_driver/rtr_single_iface.sh
index 6331ab5..f51e0af 100644
--- a/tests/data_plane/vpp_lite_topo/test_driver/rtr_single_iface.sh
+++ b/tests/data_plane/vpp_lite_topo/test_driver/rtr_single_iface.sh
@@ -22,7 +22,7 @@ function test_rtr_single_iface {
test_result=1
- ip netns exec vpp-ns1 ping -w 15 -c 1 "${1}"
+ ip netns exec vpp-ns1 "${1}" -w 15 -c 1 "${2}"
rc=$?
rtr_single_iface_clean
diff --git a/tests/data_plane/vpp_lite_topo/test_rtr_single_iface_4o4.sh b/tests/data_plane/vpp_lite_topo/test_rtr_single_iface_4o4.sh
index 2729c7e..465a014 100755
--- a/tests/data_plane/vpp_lite_topo/test_rtr_single_iface_4o4.sh
+++ b/tests/data_plane/vpp_lite_topo/test_rtr_single_iface_4o4.sh
@@ -17,4 +17,4 @@ ODL_CONFIG_DIR=`pwd`"/../configs/odl/rtr_single_iface/4o4"
source test_driver/rtr_single_iface.sh
-test_rtr_single_iface "6.0.4.4"
+test_rtr_single_iface ping "6.0.4.4"
diff --git a/tests/data_plane/vpp_lite_topo/test_rtr_single_iface_6o4.sh b/tests/data_plane/vpp_lite_topo/test_rtr_single_iface_6o4.sh
new file mode 100755
index 0000000..ced8729
--- /dev/null
+++ b/tests/data_plane/vpp_lite_topo/test_rtr_single_iface_6o4.sh
@@ -0,0 +1,19 @@
+#!/usr/bin/env bash
+
+#
+# Test for VPP LISP RTR functionality (6over4).
+#
+# IMPORTANT: This test needs to have ODL running with following config
+# line in etc/custom.properties:
+# lisp.elpPolicy = replace
+#
+# This test configures a topology of two XTRs and RTR. An ICMP request is
+# sent from host1 behind first TR to the host2 behind the second TR.
+#
+
+VPP_LITE_CONF=`pwd`"/../configs/vpp_lite_config/rtr_single_iface/6o4/"
+ODL_CONFIG_DIR=`pwd`"/../configs/odl/rtr_single_iface/6o4"
+
+source test_driver/rtr_single_iface.sh
+
+test_rtr_single_iface ping6 "6:0:4::4"
diff --git a/tests/data_plane/vpp_lite_topo/test_rtr_single_iface_6o6.sh b/tests/data_plane/vpp_lite_topo/test_rtr_single_iface_6o6.sh
new file mode 100755
index 0000000..184c4ac
--- /dev/null
+++ b/tests/data_plane/vpp_lite_topo/test_rtr_single_iface_6o6.sh
@@ -0,0 +1,20 @@
+#!/usr/bin/env bash
+
+#
+# Test for VPP LISP RTR functionality (6over6).
+#
+# IMPORTANT: This test needs to have ODL running with following config
+# line in etc/custom.properties:
+# lisp.elpPolicy = replace
+#
+# This test configures a topology of two XTRs and RTR. An ICMP request is
+# sent from host1 behind first TR to the host2 behind the second TR.
+# Both underlying and overlying networks are IPv6
+#
+
+VPP_LITE_CONF=`pwd`"/../configs/vpp_lite_config/rtr_single_iface/6o6/"
+ODL_CONFIG_DIR=`pwd`"/../configs/odl/rtr_single_iface/6o6"
+
+source test_driver/rtr_single_iface.sh
+
+test_rtr_single_iface ping6 "6:0:4::4"
diff --git a/tests/data_plane/vpp_lite_topo/topologies/rtr_single_iface.sh b/tests/data_plane/vpp_lite_topo/topologies/rtr_single_iface.sh
index 2be2e8c..b6530e7 100644
--- a/tests/data_plane/vpp_lite_topo/topologies/rtr_single_iface.sh
+++ b/tests/data_plane/vpp_lite_topo/topologies/rtr_single_iface.sh
@@ -3,7 +3,7 @@
function rtr_single_iface_clean {
echo "Clearing all VPP instances.."
pkill vpp --signal 9
-
+
rm /dev/shm/*
echo "Cleaning RTR topology.."
@@ -57,7 +57,9 @@ function rtr_single_iface_setup {
bash -c "
ip link set dev lo up
ip addr add 6.0.2.2/24 dev veth_vpp1
+ ip addr add 6:0:2::2/64 dev veth_vpp1
ip route add 6.0.4.0/24 via 6.0.2.1
+ ip route add 6:0:4::0/64 via 6:0:2::1
"
ip link add veth_vpp2 type veth peer name vpp2
@@ -68,7 +70,9 @@ function rtr_single_iface_setup {
bash -c "
ip link set dev lo up
ip addr add 6.0.4.4/24 dev veth_vpp2
+ ip addr add 6:0:4::4/64 dev veth_vpp2
ip route add 6.0.2.0/24 via 6.0.4.1
+ ip route add 6:0:2::0/64 via 6:0:4::1
"
ip addr add 6.0.3.100/24 dev odl