diff options
author | Manuel Buil <mbuil@suse.com> | 2017-09-28 11:15:12 +0200 |
---|---|---|
committer | Manuel Buil <mbuil@suse.com> | 2017-09-28 14:11:14 +0000 |
commit | 6e4ba8940d0b31d9c53c89968a146a2c0c64a731 (patch) | |
tree | 96437b14dbdcae9082ddc5212e1627fd6ae9d166 | |
parent | 841e264b708557b86ea906e24d7728d19ee974ed (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 |