Skip to content

Commit

Permalink
ipsec: enable ca field for hybrid and mutual rsa xauth
Browse files Browse the repository at this point in the history
  • Loading branch information
fichtner committed May 5, 2017
1 parent 5376a0e commit 4570776
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/www/vpn_ipsec_phase1.php
Original file line number Diff line number Diff line change
Expand Up @@ -464,8 +464,6 @@ function ipsec_ikeid_next() {
$(".auth_opt :input").prop( "disabled", true );
switch ($("#authentication_method").val()) {
case 'eap-tls':
case 'hybrid_rsa_server':
case 'xauth_rsa_server':
case 'eap-mschapv2':
$(".auth_eap_tls").show();
$(".auth_eap_tls :input").prop( "disabled", false );
Expand All @@ -482,6 +480,8 @@ function ipsec_ikeid_next() {
$(".auth_psk :input").prop( "disabled", false );
}
break;
case 'hybrid_rsa_server':
case 'xauth_rsa_server':
case 'rsasig':
$(".auth_eap_tls_caref").show();
$(".auth_eap_tls_caref :input").prop( "disabled", false );
Expand Down

0 comments on commit 4570776

Please sign in to comment.