As a version 3 idea, or might it be possibly a better idea to delete the '--auth *' directive in N2N.conf if AES-GCM has been chosen ? i think it might also be better to integrate '--tls-crypt' --> https://www.mail-archive.com/openvpn-devel(a)lists.sourceforge.net/msg12357.html  instead of '--tls-auth' to N2N connections which uses a static AES-256-CTR whereby a HMAC can not be selected ? But also it might be time to delete SHA1 complete from Net-to-Net HMAC selection since this won´t harm old connections but brings a little more security per default ? Sorry for the back and forth but the way is the goal :D . Some feedback might be nevertheless nice and important. Greetings, Erik Am Mittwoch, den 14.02.2018, 15:40 +0100 schrieb Erik Kapfer: > AES-GCM 128, 196 and 256 bit has been added to Net-to-Net and > Roadwarrior section. > > Cipher menu description has been changed for N2N and RW since AES-GCM > uses own authentication encryption (GMAC). >     More information can be found in here https://tools.ietf.org/html > /rfc5288 . > Added java script snipped to disable HMAC selection for N2N if AES- > GCM has been selected. >     'auth *' line in N2N.conf won´t be deleted even if AES-GCM is > used so possible individual '--tls-auth' configurations won´t broke. >     'auth *' line in N2N.conf will also be ignored if AES-GCM is used > and no '--tls-auth' are configured. > Left HMAC selection menu for Roadwarriors as it was since the WUI do > provides '--tls-auth' which uses the configuered HMAC even AES-GCM > has been applied. > > Signed-off-by: Erik Kapfer > --- >  html/cgi-bin/ovpnmain.cgi | 32 ++++++++++++++++++++++++++++++-- >  1 file changed, 30 insertions(+), 2 deletions(-) > > diff --git a/html/cgi-bin/ovpnmain.cgi b/html/cgi-bin/ovpnmain.cgi > index 9f5e682..0a18ec7 100644 > --- a/html/cgi-bin/ovpnmain.cgi > +++ b/html/cgi-bin/ovpnmain.cgi > @@ -4543,6 +4543,9 @@ if ($cgiparams{'TYPE'} eq 'net') { >      } >      $checked{'PMTU_DISCOVERY'}{$cgiparams{'PMTU_DISCOVERY'}} = > 'checked=\'checked\''; >   > +    $selected{'DCIPHER'}{'AES-256-GCM'} = ''; > +    $selected{'DCIPHER'}{'AES-192-GCM'} = ''; > +    $selected{'DCIPHER'}{'AES-128-GCM'} = ''; >      $selected{'DCIPHER'}{'CAMELLIA-256-CBC'} = ''; >      $selected{'DCIPHER'}{'CAMELLIA-192-CBC'} = ''; >      $selected{'DCIPHER'}{'CAMELLIA-128-CBC'} = ''; > @@ -4706,7 +4709,10 @@ if ($cgiparams{'TYPE'} eq 'net') { >   >   >   $Lang::tr{'cipher'} > - > + > + > + >   >   >   > @@ -4723,7 +4729,7 @@ if ($cgiparams{'TYPE'} eq 'net') { >   >   >   $Lang::tr{'ovpn ha'}: > - >   >   >   > @@ -4737,6 +4743,22 @@ if ($cgiparams{'TYPE'} eq 'net') { >  END >  ; >   } > + > +#### JAVA SCRIPT #### > +# Validate N2N cipher. If GCM is used, disable HMAC menu > +print< + > +END > + >  #jumper >   print "$Lang::tr{'remark > title'}"; >   print " value='$cgiparams{'REMARK'}' size='55' maxlength='50' > />"; > @@ -5108,6 +5130,9 @@ END >      $selected{'DPROTOCOL'}{'tcp'} = ''; >      $selected{'DPROTOCOL'}{$cgiparams{'DPROTOCOL'}} = 'SELECTED'; >   > +    $selected{'DCIPHER'}{'AES-256-GCM'} = ''; > +    $selected{'DCIPHER'}{'AES-192-GCM'} = ''; > +    $selected{'DCIPHER'}{'AES-128-GCM'} = ''; >      $selected{'DCIPHER'}{'CAMELLIA-256-CBC'} = ''; >      $selected{'DCIPHER'}{'CAMELLIA-192-CBC'} = ''; >      $selected{'DCIPHER'}{'CAMELLIA-128-CBC'} = ''; > @@ -5204,6 +5229,9 @@ END >   >   nowrap='nowrap'>$Lang::tr{'cipher'} >