From mboxrd@z Thu Jan 1 00:00:00 1970 From: Erik Kapfer To: development@lists.ipfire.org Subject: [PATCH] OpenVPN: Introduce Negotiable Crypto Parameters for roadwarriors Date: Mon, 06 Aug 2018 09:25:54 +0200 Message-ID: <1533540354-4387-1-git-send-email-erik.kapfer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5737978841090487259==" List-Id: --===============5737978841090487259== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable The ncp-ciphers differs to the OpenVPN default value and has been adapted fro= m Fedora. Please see explanations in https://fedoraproject.org/wiki/Changes/New_default= _cipher_in_OpenVPN . --- html/cgi-bin/ovpnmain.cgi | 38 +++++++++++++++++++++++++++----------- langs/de/cgi-bin/de.pl | 1 + langs/en/cgi-bin/en.pl | 1 + 3 files changed, 29 insertions(+), 11 deletions(-) diff --git a/html/cgi-bin/ovpnmain.cgi b/html/cgi-bin/ovpnmain.cgi index 976300f..dc22ba5 100644 --- a/html/cgi-bin/ovpnmain.cgi +++ b/html/cgi-bin/ovpnmain.cgi @@ -321,8 +321,13 @@ sub writeserverconf { }=09 print CONF "status-version 1\n"; print CONF "status /var/run/ovpnserver.log 30\n"; - print CONF "ncp-disable\n"; print CONF "cipher $sovpnsettings{DCIPHER}\n"; + # Enable Negotiable Crypto Parameters + if ($sovpnsettings{'NCP'} eq 'on') { + print CONF "ncp-ciphers AES-256-GCM:AES-256-CBC:AES-128-GCM:AES-128= -CBC:BF-CBC\n"; + } else { + print CONF "ncp-disable\n"; + } if ($sovpnsettings{'DAUTH'} eq '') { print CONF ""; } else { @@ -789,6 +794,7 @@ if ($cgiparams{'ACTION'} eq $Lang::tr{'save-adv-options'}= ) { $vpnsettings{'ROUTES_PUSH'} =3D $cgiparams{'ROUTES_PUSH'}; $vpnsettings{'DAUTH'} =3D $cgiparams{'DAUTH'}; $vpnsettings{'TLSAUTH'} =3D $cgiparams{'TLSAUTH'}; + $vpnsettings{'NCP'} =3D $cgiparams{'NCP'}; my @temp=3D(); =20 if ($cgiparams{'FRAGMENT'} eq '') { @@ -2685,6 +2691,9 @@ ADV_ERROR: $checked{'TLSAUTH'}{'off'} =3D ''; $checked{'TLSAUTH'}{'on'} =3D ''; $checked{'TLSAUTH'}{$cgiparams{'TLSAUTH'}} =3D 'CHECKED'; + $checked{'NCP'}{'off'} =3D ''; + $checked{'NCP'}{'on'} =3D ''; + $checked{'NCP'}{$cgiparams{'NCP'}} =3D 'CHECKED'; =20 &Header::showhttpheaders(); &Header::openpage($Lang::tr{'status ovpn'}, 1, ''); @@ -2818,6 +2827,22 @@ print < $Lang::tr{'ovpn crypt options'} + + + + = + + + + + + + + + + + =09 @@ -2833,17 +2858,8 @@ print <$Lang::tr{'openvpn default'}: SHA1 (160 $Lang::tr= {'bit'})
$Lang::tr{'ovpn ncp'}<= /td> +
HMAC tls-auth
+
=20 - - - - - - - - -
HMAC tls-auth<= /td> -

END =20 if ( -e "/var/run/openvpn.pid"){ diff --git a/langs/de/cgi-bin/de.pl b/langs/de/cgi-bin/de.pl index 6e3dba4..9f0de6b 100644 --- a/langs/de/cgi-bin/de.pl +++ b/langs/de/cgi-bin/de.pl @@ -1833,6 +1833,7 @@ 'ovpn mtu-disc off' =3D> 'Deaktiviert', 'ovpn mtu-disc with mssfix or fragment' =3D> 'Path MTU Discovery kann nicht = gemeinsam mit mssfix oder fragment verwendet werden.', 'ovpn mtu-disc yes' =3D> 'Forciert', +'ovpn ncp' =3D> 'Verschl=C3=BCsselung aushandeln', 'ovpn no connections' =3D> 'Keine aktiven OpenVPN Verbindungen', 'ovpn on blue' =3D> 'OpenVPN auf BLAU:', 'ovpn on orange' =3D> 'OpenVPN auf ORANGE:', diff --git a/langs/en/cgi-bin/en.pl b/langs/en/cgi-bin/en.pl index 3ec5af5..5cd47b1 100644 --- a/langs/en/cgi-bin/en.pl +++ b/langs/en/cgi-bin/en.pl @@ -1866,6 +1866,7 @@ 'ovpn mtu-disc off' =3D> 'Disabled', 'ovpn mtu-disc with mssfix or fragment' =3D> 'Path MTU Discovery cannot be u= sed with mssfix or fragment.', 'ovpn mtu-disc yes' =3D> 'Forced', +'ovpn ncp' =3D> 'Negotiate encryption', 'ovpn no connections' =3D> 'No active OpenVPN connections', 'ovpn on blue' =3D> 'OpenVPN on BLUE:', 'ovpn on orange' =3D> 'OpenVPN on ORANGE:', --=20 2.7.4 --===============5737978841090487259==--