Fixed Bug 5376 - Instances in Compute node not able to reach dhcp 45/39045/2
authorpriya.ramasubbu <priya.ramasubbu@hcl.com>
Wed, 18 May 2016 18:48:45 +0000 (00:18 +0530)
committergvrangan <venkatrangang@hcl.com>
Wed, 18 May 2016 22:13:21 +0000 (22:13 +0000)
       * This Patch disabled the firewall in compute 1 and compute 2 nodes

Change-Id: I6c48f5f856bd3e780aac014595468fc8e6e2f785
Signed-off-by: priya.ramasubbu <priya.ramasubbu@hcl.com>
jjb/integration/include-raw-integration-deploy-openstack-run-test.sh

index 58f4d63f5034812c18617085aa2a40dd82e9491b..6c501941fd0843805f3d5326502724a089c0519f 100644 (file)
@@ -389,6 +389,13 @@ echo "sleep for a minute and print hypervisor-list"
 sleep 60
 ssh ${OPENSTACK_CONTROL_NODE_IP} "cd /opt/stack/devstack; source openrc admin admin; nova hypervisor-list"
 
+#Need to disable firewalld and iptables in compute 1 node
+echo "Stop Firewall in Compute 1 Node and add to hypervisor-list"
+ssh ${OPENSTACK_COMPUTE_NODE_1_IP} "sudo systemctl stop firewalld; sudo systemctl stop iptables"
+#Need to disable firewalld and iptables in compute 2 node
+echo "Stop Firewall in Compute 2 Node and add to hypervisor-list"
+ssh ${OPENSTACK_COMPUTE_NODE_2_IP} "sudo systemctl stop firewalld; sudo systemctl stop iptables"
+
 echo "Locating test plan to use..."
 testplan_filepath="${WORKSPACE}/test/csit/testplans/${STREAMTESTPLAN}"
 if [ ! -f "${testplan_filepath}" ]; then