bugfix: ipv6 in mitaka ping6 fail in compass 69/21969/4
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 02:30:41 +0000 (02:30 +0000)
JIRA: YARDSTICK-317

Change-Id: I2ef9b7647f02a8dc96906c960c01797f426b575b
Signed-off-by: rexlee8776 <limingjiang@huawei.com>
yardstick/benchmark/scenarios/networking/ping6_metadata.txt
yardstick/benchmark/scenarios/networking/ping6_setup.bash

index 82accbf..ad97b24 100644 (file)
@@ -60,15 +60,6 @@ write_files:
    permissions: '0755'
    owner: root:root
  - content: |
-     interface eth0
-     {
-        AdvSendAdvert on;
-        MinRtrAdvInterval 3;
-        MaxRtrAdvInterval 10;
-        AdvDefaultLifetime 0;
-        route 2001:db8:0:2::/64 {
-        };
-     };
      interface eth1
      {
         AdvSendAdvert on;
index b2f324f..267fb3e 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