summaryrefslogtreecommitdiffstats
path: root/testcases/features/sfc/compute_presetup_CI.bash
diff options
context:
space:
mode:
authorManuel Buil <manuel.buil@ericsson.com>2016-08-03 17:59:07 +0200
committerManuel Buil <manuel.buil@ericsson.com>2016-08-05 11:43:17 +0200
commite9713403a50f6a71aeaa49c07145795e15d2b45f (patch)
tree0eadad6093eed3604eeb506092100a13f97e4c57 /testcases/features/sfc/compute_presetup_CI.bash
parent5f0d2316d91b40a6cf62b15b309b0c2e2d2f582c (diff)
Bug fixes odl-sfc + new features
* Doing the test with private IPs as floating are currently not working in ODL * New SF takes more time to start the service. A while loop is added. * Configuration of the compute set-up due to ODL limitations added Change-Id: I5449af940caee456262dac66bc47b66fd05c2a70 Signed-off-by: Manuel Buil <manuel.buil@ericsson.com>
Diffstat (limited to 'testcases/features/sfc/compute_presetup_CI.bash')
-rwxr-xr-xtestcases/features/sfc/compute_presetup_CI.bash21
1 files changed, 21 insertions, 0 deletions
diff --git a/testcases/features/sfc/compute_presetup_CI.bash b/testcases/features/sfc/compute_presetup_CI.bash
new file mode 100755
index 000000000..57d3d8278
--- /dev/null
+++ b/testcases/features/sfc/compute_presetup_CI.bash
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+# This script must be use with vxlan-gpe + nsh. Once we have eth + nsh support
+# in ODL, we will not need it anymore
+
+set -e
+ssh_options='-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no'
+BASEDIR=`dirname $0`
+INSTALLER_IP=${INSTALLER_IP:-10.20.0.2}
+
+pushd $BASEDIR
+ip=`sshpass -p r00tme ssh $ssh_options root@${INSTALLER_IP} 'fuel node'|grep compute|\
+awk '{print $10}' | head -1`
+
+echo $ip
+sshpass -p r00tme scp $ssh_options correct_classifier.bash ${INSTALLER_IP}:/root
+sshpass -p r00tme ssh $ssh_options root@${INSTALLER_IP} 'scp correct_classifier.bash '"$ip"':/root'
+
+sshpass -p r00tme ssh $ssh_options root@${INSTALLER_IP} 'ssh root@'"$ip"' ifconfig br-int up'
+sshpass -p r00tme ssh $ssh_options root@${INSTALLER_IP} 'ssh root@'"$ip"' ip route add 11.0.0.0/24 \
+dev br-int'