diff options
author | Martin Schiller <ms@dev.tdt.de> | 2018-12-13 08:08:24 +0100 |
---|---|---|
committer | Martin Schiller <ms@dev.tdt.de> | 2018-12-13 08:08:24 +0100 |
commit | ab234df3df03422e66dd1b89de3cb49271fcfe99 (patch) | |
tree | c442bee789c2577ca94d106398e51e2fcf351997 /applications/luci-app-openvpn/root/etc | |
parent | aa954d1c69c1f6b8046fbec82876f1e2c544185d (diff) |
luci-app-openvpn: re-add options comp_lzo and comp_noadapt
* re-add config option comp_lzo according to
openwrt/openwrt@3850b41
* re-add config option comp_noadapt. This has never been removed
from openwrt
Signed-off-by: Martin Schiller <ms@dev.tdt.de>
Diffstat (limited to 'applications/luci-app-openvpn/root/etc')
-rw-r--r-- | applications/luci-app-openvpn/root/etc/config/openvpn_recipes | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/applications/luci-app-openvpn/root/etc/config/openvpn_recipes b/applications/luci-app-openvpn/root/etc/config/openvpn_recipes index 69270e48e..12a49eef0 100644 --- a/applications/luci-app-openvpn/root/etc/config/openvpn_recipes +++ b/applications/luci-app-openvpn/root/etc/config/openvpn_recipes @@ -8,6 +8,7 @@ config openvpn_recipe server_tun_ptp option ifconfig '10.0.0.1 10.0.0.2' option secret 'shared-secret.key' option keepalive '10 60' + option comp_lzo 'yes' option verb '3' option mssfix '1420' @@ -22,6 +23,7 @@ config openvpn_recipe client_tun_ptp option ifconfig '10.0.0.2 10.0.0.1' option secret 'shared-secret.key' option nobind '1' + option comp_lzo 'yes' option verb '3' # @@ -37,6 +39,7 @@ config openvpn_recipe server_tun option key 'server.key' option dh 'dh1024.pem' option keepalive '10 60' + option comp_lzo 'yes' option verb '3' option mssfix '1420' @@ -51,6 +54,7 @@ config openvpn_recipe client_tun list remote 'vpnserver.example.org' option pkcs12 'my_client.p12' option remote_cert_tls 'server' + option comp_lzo 'yes' option nobind '1' option persist_key '1' option persist_tun '1' @@ -71,6 +75,7 @@ config openvpn_recipe server_tap_bridge option key 'server.key' option dh 'dh1024.pem' option keepalive '10 60' + option comp_lzo 'yes' option verb '3' option mssfix '1420' @@ -88,6 +93,7 @@ config openvpn_recipe client_tap_bridge option key 'my_client.key' option dh 'dh1024.pem' option remote_cert_tls 'server' + option comp_lzo 'yes' option nobind '1' option persist_key '1' option verb '3' |