summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCrushable1278 <171992261+Crushable1278@users.noreply.github.com>2024-09-12 23:37:01 -0600
committerCrushable1278 <171992261+Crushable1278@users.noreply.github.com>2024-09-13 01:22:08 -0600
commit30159928aeb0cfb158336f7f60b95fd06b34b9bf (patch)
tree1099f9c8738e2c09613d902f853cc0071a237b8e
parenteb9e562c28d2935a3823a5522983697cf76dad52 (diff)
downloadvyos-1x-30159928aeb0cfb158336f7f60b95fd06b34b9bf.tar.gz
vyos-1x-30159928aeb0cfb158336f7f60b95fd06b34b9bf.zip
T6555: openvpn: fix inclusion of data-ciphers for server bridge smoketest
Commit dc1da7c ("OPENVPN: T6555: add server-bridge options in mode server") added a new smoketest which used the data-ciphers command which is new starting with VyOS 1.5.
-rwxr-xr-xsmoketest/scripts/cli/test_interfaces_openvpn.py2
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])