diff options
author | Manuel Buil <mbuil@suse.com> | 2017-09-28 11:15:12 +0200 |
---|---|---|
committer | Brady Johnson <bjohnson@inocybe.com> | 2017-09-28 15:09:57 +0000 |
commit | 3fe1059435956161b77d747487a146890d12b8b8 (patch) | |
tree | ed21e4a2b2c2080921173a49c19150eaa3786ddc | |
parent | 440cb84b50c72591a325d0761ce4928bc613a839 (diff) |
Bug fix: Actively disable security on SF port
JIRA: SFC-114
Some cases show that it was not enough with the patch:
https://gerrit.opnfv.org/gerrit/#/c/42801/
We should explicitely disable security in the SF ports. That can be done
with a the antispoofing parameter in the vnfd
Change-Id: Ie20ab961633866f48a4abcc299a62e8c55280088
Signed-off-by: Manuel Buil <mbuil@suse.com>
5 files changed, 5 insertions, 1 deletions
diff --git a/sfc/tests/functest/vnfd-templates/test-vnfd1.yaml b/sfc/tests/functest/vnfd-templates/test-vnfd1.yaml index b2a4900b..277c1880 100644 --- a/sfc/tests/functest/vnfd-templates/test-vnfd1.yaml +++ b/sfc/tests/functest/vnfd-templates/test-vnfd1.yaml @@ -42,6 +42,7 @@ topology_template: properties: management: true order: 0 + anti_spoofing_protection: false requirements: - virtualLink: node: VL1 diff --git a/sfc/tests/functest/vnfd-templates/test-vnfd2.yaml b/sfc/tests/functest/vnfd-templates/test-vnfd2.yaml index 353afae7..337e9412 100644 --- a/sfc/tests/functest/vnfd-templates/test-vnfd2.yaml +++ b/sfc/tests/functest/vnfd-templates/test-vnfd2.yaml @@ -43,6 +43,7 @@ topology_template: properties: management: true order: 0 + anti_spoofing_protection: false requirements: - virtualLink: node: VL1 diff --git a/sfc/tests/functest/vnfd-templates/test2-vnfd1.yaml b/sfc/tests/functest/vnfd-templates/test2-vnfd1.yaml index d01bf934..cc5fed6f 100644 --- a/sfc/tests/functest/vnfd-templates/test2-vnfd1.yaml +++ b/sfc/tests/functest/vnfd-templates/test2-vnfd1.yaml @@ -42,6 +42,7 @@ topology_template: properties: management: true order: 0 + anti_spoofing_protection: false requirements: - virtualLink: node: VL1 diff --git a/sfc/tests/functest/vnfd-templates/test2-vnfd2.yaml b/sfc/tests/functest/vnfd-templates/test2-vnfd2.yaml index 9a7da6e3..f8150f25 100644 --- a/sfc/tests/functest/vnfd-templates/test2-vnfd2.yaml +++ b/sfc/tests/functest/vnfd-templates/test2-vnfd2.yaml @@ -42,6 +42,7 @@ topology_template: properties: management: true order: 0 + anti_spoofing_protection: false requirements: - virtualLink: node: VL1 diff --git a/sfc/tests/functest/vnfd-templates/test3-vnfd1.yaml b/sfc/tests/functest/vnfd-templates/test3-vnfd1.yaml index 7f8f1787..26491b5e 100644 --- a/sfc/tests/functest/vnfd-templates/test3-vnfd1.yaml +++ b/sfc/tests/functest/vnfd-templates/test3-vnfd1.yaml @@ -39,7 +39,7 @@ topology_template: properties: management: true order: 0 - anti_spoofing_protection: true + anti_spoofing_protection: false requirements: - virtualLink: node: VL1 |