bugfix: ipv6 in mitaka ping6 fail in compass 55/22055/1
authorrexlee8776 <limingjiang@huawei.com>
Wed, 21 Sep 2016 00:08:22 +0000 (00:08 +0000)
committerliang gao <jean.gaoliang@huawei.com>
Wed, 21 Sep 2016 08:19:03 +0000 (08:19 +0000)
JIRA: YARDSTICK-317

Change-Id: I2ef9b7647f02a8dc96906c960c01797f426b575b
Signed-off-by: rexlee8776 <limingjiang@huawei.com>
(cherry picked from commit 329316b4ccbd3ed1de6511bb7137d37e873ebd8b)

yardstick/benchmark/scenarios/networking/ping6_setup.bash

index 658e1d3..b419ba3 100644 (file)
@@ -78,4 +78,13 @@ nova boot --image Fedora22  --flavor m1.small \
 --nic port-id=$(neutron port-list | grep -w eth0-VM2 | awk '{print $2}') \
 --key-name vRouterKey VM2
 
+sleep 60
+
 nova list
+# disable eth0-VM1, eth0-VM2 port-security
+for port in eth0-VM1 eth0-VM2
+do
+    neutron port-update --no-security-groups $port
+    neutron port-update $port --port-security-enabled=False
+    neutron port-show $port | grep port_security_enabled
+done