diff options
author | rexlee8776 <limingjiang@huawei.com> | 2016-09-21 00:08:22 +0000 |
---|---|---|
committer | liang gao <jean.gaoliang@huawei.com> | 2016-09-21 08:19:03 +0000 |
commit | 84d6e1a32fc07603f7b6fa5990f0f4dc15e1a9dc (patch) | |
tree | 7415dc25f709b044c782378eaf6629b9032c38ba | |
parent | fbf978828e41b8a94063df38f40b0b4c5af95fad (diff) |
bugfix: ipv6 in mitaka ping6 fail in compass
JIRA: YARDSTICK-317
Change-Id: I2ef9b7647f02a8dc96906c960c01797f426b575b
Signed-off-by: rexlee8776 <limingjiang@huawei.com>
(cherry picked from commit 329316b4ccbd3ed1de6511bb7137d37e873ebd8b)
-rw-r--r-- | yardstick/benchmark/scenarios/networking/ping6_setup.bash | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/yardstick/benchmark/scenarios/networking/ping6_setup.bash b/yardstick/benchmark/scenarios/networking/ping6_setup.bash index 658e1d3cf..b419ba3f8 100644 --- a/yardstick/benchmark/scenarios/networking/ping6_setup.bash +++ b/yardstick/benchmark/scenarios/networking/ping6_setup.bash @@ -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 |