diff options
author | fett0 <50275740+fett0@users.noreply.github.com> | 2024-09-13 15:23:17 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-13 15:23:17 -0300 |
commit | 6c467b1fdc9d2e32d3ea60c15843008f31f98dca (patch) | |
tree | a78d925a13ba7b9863bd8f54c118be52002873c4 | |
parent | 7b9ac5278bedf4ced16a1d9923ac77683395e0c4 (diff) | |
parent | 30159928aeb0cfb158336f7f60b95fd06b34b9bf (diff) | |
download | vyos-1x-6c467b1fdc9d2e32d3ea60c15843008f31f98dca.tar.gz vyos-1x-6c467b1fdc9d2e32d3ea60c15843008f31f98dca.zip |
Merge pull request #4063 from Crushable1278/T6555-openvpn-fix-server-bridge-smoketest
T6555: openvpn: fix inclusion of data-ciphers for server bridge test
-rwxr-xr-x | smoketest/scripts/cli/test_interfaces_openvpn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_openvpn.py b/smoketest/scripts/cli/test_interfaces_openvpn.py index 9b77a6481..7e7f47a4d 100755 --- a/smoketest/scripts/cli/test_interfaces_openvpn.py +++ b/smoketest/scripts/cli/test_interfaces_openvpn.py @@ -625,7 +625,7 @@ class TestInterfacesOpenVPN(VyOSUnitTestSHIM.TestCase): self.cli_set(['interfaces', 'bridge', br_if, 'member', 'interface', vtun_if]) self.cli_set(path + ['device-type', 'tap']) - self.cli_set(path + ['encryption', 'data-ciphers', 'aes192']) + self.cli_set(path + ['encryption', 'ncp-ciphers', 'aes192']) self.cli_set(path + ['hash', auth_hash]) self.cli_set(path + ['mode', 'server']) self.cli_set(path + ['server', 'bridge', 'gateway', gw_subnet]) |