diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-09-19 12:14:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-19 12:14:10 +0200 |
commit | fdfe3dabcbff4b495c7e3e7a61b9edbb94aaad98 (patch) | |
tree | 299d81f8fae487eeeeb17b51119884d31bf0130c | |
parent | 877047b9d36f9a2ef029cc6f05c1467d1a0d6e3f (diff) | |
parent | 842d79f986c23ca0ba9cd7ae9056382968637b1a (diff) | |
download | vyos-1x-fdfe3dabcbff4b495c7e3e7a61b9edbb94aaad98.tar.gz vyos-1x-fdfe3dabcbff4b495c7e3e7a61b9edbb94aaad98.zip |
Merge pull request #1549 from sever-sever/T4118-smoketest
smoketest: T4118: Fix smoketest for NHRP
-rwxr-xr-x | smoketest/scripts/cli/test_protocols_nhrp.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/test_protocols_nhrp.py b/smoketest/scripts/cli/test_protocols_nhrp.py index 9a00b86fc..59252875b 100755 --- a/smoketest/scripts/cli/test_protocols_nhrp.py +++ b/smoketest/scripts/cli/test_protocols_nhrp.py @@ -65,7 +65,6 @@ class TestProtocolsNHRP(VyOSUnitTestSHIM.TestCase): self.cli_set(nhrp_path + ["tunnel", tunnel_if, "shortcut"]) # IKE/ESP Groups - self.cli_set(vpn_path + ["esp-group", esp_group, "compression", "disable"]) self.cli_set(vpn_path + ["esp-group", esp_group, "lifetime", "1800"]) self.cli_set(vpn_path + ["esp-group", esp_group, "mode", "transport"]) self.cli_set(vpn_path + ["esp-group", esp_group, "pfs", "dh-group2"]) @@ -74,7 +73,6 @@ class TestProtocolsNHRP(VyOSUnitTestSHIM.TestCase): self.cli_set(vpn_path + ["esp-group", esp_group, "proposal", "2", "encryption", "3des"]) self.cli_set(vpn_path + ["esp-group", esp_group, "proposal", "2", "hash", "md5"]) - self.cli_set(vpn_path + ["ike-group", ike_group, "ikev2-reauth", "no"]) self.cli_set(vpn_path + ["ike-group", ike_group, "key-exchange", "ikev1"]) self.cli_set(vpn_path + ["ike-group", ike_group, "lifetime", "3600"]) self.cli_set(vpn_path + ["ike-group", ike_group, "proposal", "1", "dh-group", "2"]) |