From: egc112 <63402314+egc112@users.noreply.github.com> Date: Sat, 13 May 2023 09:08:09 +0000 (+0200) Subject: Update openvpn-advanced.lua X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=dac9cd58f8ace348adc756ea52d4dd5a2e699709;p=project%2Fluci.git Update openvpn-advanced.lua Add data-ciphers. Signed-off-by: egc112 <63402314+egc112@users.noreply.github.com> --- diff --git a/applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua b/applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua index 03ce38e9d2..0dca521a0c 100644 --- a/applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua +++ b/applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua @@ -798,6 +798,10 @@ local knownParams = { "ncp_ciphers", "AES-256-GCM:AES-128-GCM", translate("Restrict the allowed ciphers to be negotiated") }, + { Value, + "data_ciphers", + "CHACHA20-POLY1305:AES-256-GCM:AES-128-GCM:AES-256-CBC", + translate("Restrict the allowed ciphers to be negotiated") }, } } }