Commit f2e7a2f8 authored by Ad Schellevis's avatar Ad Schellevis Committed by Franco Fichtner

(ipsec) missing ca for Mutual RSA, for https://github.com/opnsense/core/issues/1497

(cherry picked from commit b6c6eec2)
parent 8dad727d
...@@ -467,7 +467,6 @@ include("head.inc"); ...@@ -467,7 +467,6 @@ include("head.inc");
case 'eap-tls': case 'eap-tls':
case 'hybrid_rsa_server': case 'hybrid_rsa_server':
case 'xauth_rsa_server': case 'xauth_rsa_server':
case 'rsasig':
case 'eap-mschapv2': case 'eap-mschapv2':
$(".auth_eap_tls").show(); $(".auth_eap_tls").show();
$(".auth_eap_tls :input").prop( "disabled", false ); $(".auth_eap_tls :input").prop( "disabled", false );
...@@ -484,6 +483,12 @@ include("head.inc"); ...@@ -484,6 +483,12 @@ include("head.inc");
$(".auth_psk :input").prop( "disabled", false ); $(".auth_psk :input").prop( "disabled", false );
} }
break; break;
case 'rsasig':
$(".auth_eap_tls_caref").show();
$(".auth_eap_tls_caref :input").prop( "disabled", false );
$(".auth_eap_tls").show();
$(".auth_eap_tls :input").prop( "disabled", false );
break;
default: /* psk modes*/ default: /* psk modes*/
$(".auth_psk").show(); $(".auth_psk").show();
$(".auth_psk :input").prop( "disabled", false ); $(".auth_psk :input").prop( "disabled", false );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment