Hello Julien?!, thanks for submitting this patch. Could you go into more detail about what this patch is doing and why you need it? Best, -Michael On Mon, 2018-07-09 at 22:07 +0200, jbsky wrote: > Added xauthrsasig option instead of cert in /var/ipfire/vpn/config. > By replacing cert with xauth in the 5th place option, the vpn connection is > configured to support xauthrsasig, ikev1 is also to be changed manually in the > file. > --- > html/cgi-bin/vpnmain.cgi | 15 ++++++++++----- > 1 file changed, 10 insertions(+), 5 deletions(-) > > diff --git a/html/cgi-bin/vpnmain.cgi b/html/cgi-bin/vpnmain.cgi > index 378acb326..a5c50dbda 100644 > --- a/html/cgi-bin/vpnmain.cgi > +++ b/html/cgi-bin/vpnmain.cgi > @@ -304,7 +304,7 @@ sub writeipsecfiles { > } > > # Local Cert and Remote Cert (unless auth is DN dn-auth) > - if ($lconfighash{$key}[4] eq 'cert') { > + if (($lconfighash{$key}[4] eq 'cert')||($lconfighash{$key}[4] > eq 'xauthrsasig')) { > print CONF > "\tleftcert=${General::swroot}/certs/hostcert.pem\n"; > print CONF > "\trightcert=${General::swroot}/certs/$lconfighash{$key}[1]cert.pem\n" if > ($lconfighash{$key}[2] ne '%auth-dn'); > } > @@ -408,7 +408,12 @@ sub writeipsecfiles { > print SECRETS $psk_line; > } > print CONF "\tauthby=secret\n"; > - } else { > + } > + elsif ($lconfighash{$key}[4] eq 'xauthrsasig') { > + print CONF "\tauthby=xauthrsasig\n"; > + print CONF "\txauth=server\n"; > + } > + else { > print CONF "\tauthby=rsasig\n"; > print CONF "\tleftrsasigkey=%cert\n"; > print CONF "\trightrsasigkey=%cert\n"; > @@ -2841,7 +2846,7 @@ END > print "