summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2022-09-19 06:57:46 +0000
committerViacheslav Hletenko <v.gletenko@vyos.io>2022-09-19 06:57:46 +0000
commit842d79f986c23ca0ba9cd7ae9056382968637b1a (patch)
tree299d81f8fae487eeeeb17b51119884d31bf0130c
parent877047b9d36f9a2ef029cc6f05c1467d1a0d6e3f (diff)
downloadvyos-1x-842d79f986c23ca0ba9cd7ae9056382968637b1a.tar.gz
vyos-1x-842d79f986c23ca0ba9cd7ae9056382968637b1a.zip
smoketest: T4118: Fix smoketest for NHRP
As we change syntax for IPSec 'esp <tag> compression disable' to delete 'compression' if it not used, so delete it from nhtp test
-rwxr-xr-xsmoketest/scripts/cli/test_protocols_nhrp.py2
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"])