summaryrefslogtreecommitdiff
path: root/src/conf_mode/interfaces_openvpn.py
diff options
context:
space:
mode:
authorsrividya0208 <a.srividya@vyos.io>2024-07-15 06:30:00 -0400
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2024-09-18 10:35:50 +0000
commit087c33f09237ca8d47b4d84ab52b466c3a141d8c (patch)
tree98aad533eb5293c9bcfb791ed742b05e4c1dec21 /src/conf_mode/interfaces_openvpn.py
parent87611cccbcb89bcf0fb3316afd7064a7d2f66b5b (diff)
downloadvyos-1x-087c33f09237ca8d47b4d84ab52b466c3a141d8c.tar.gz
vyos-1x-087c33f09237ca8d47b4d84ab52b466c3a141d8c.zip
OpenVPN CLI-option: T6571: rename ncp-ciphers with data-ciphers
(cherry picked from commit b62b2f5f8a9c4f0a7dc26bce1f15843651119256)
Diffstat (limited to 'src/conf_mode/interfaces_openvpn.py')
-rwxr-xr-xsrc/conf_mode/interfaces_openvpn.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/conf_mode/interfaces_openvpn.py b/src/conf_mode/interfaces_openvpn.py
index d2665d9e5..9105ce1f8 100755
--- a/src/conf_mode/interfaces_openvpn.py
+++ b/src/conf_mode/interfaces_openvpn.py
@@ -322,8 +322,8 @@ def verify(openvpn):
if v4addr in openvpn['local_address'] and 'subnet_mask' not in openvpn['local_address'][v4addr]:
raise ConfigError('Must specify IPv4 "subnet-mask" for local-address')
- if dict_search('encryption.ncp_ciphers', openvpn):
- raise ConfigError('NCP ciphers can only be used in client or server mode')
+ if dict_search('encryption.data_ciphers', openvpn):
+ raise ConfigError('Cipher negotiation can only be used in client or server mode')
else:
# checks for client-server or site-to-site bridged
@@ -536,7 +536,7 @@ def verify(openvpn):
if dict_search('encryption.cipher', openvpn):
raise ConfigError('"encryption cipher" option is deprecated for TLS mode. '
- 'Use "encryption ncp-ciphers" instead')
+ 'Use "encryption data-ciphers" instead')
if dict_search('encryption.cipher', openvpn) == 'none':
print('Warning: "encryption none" was specified!')