mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Set rightca for IPsec phase 1 using Mutual RSA, Mutual RSA + xauth, or EAP-TLS. Fixes #5241.
This commit is contained in:
parent
b7e3ab94e2
commit
cd4aa77ca3
@ -957,6 +957,21 @@ EOD;
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($ph1ent['caref'])) {
|
||||
$ca = lookup_ca($ph1ent['caref']);
|
||||
if ($ca) {
|
||||
$casubarr = cert_get_subject_array($ca['crt']);
|
||||
$casub = "";
|
||||
foreach ($casubarr as $casubfield) {
|
||||
if (empty($casub)) {
|
||||
$casub = "/";
|
||||
}
|
||||
$casub .= "{$casubfield['a']}={$casubfield['v']}/";
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
$authentication = "";
|
||||
switch ($ph1ent['authentication_method']) {
|
||||
case 'eap-mschapv2':
|
||||
@ -981,6 +996,9 @@ EOD;
|
||||
$authentication .= "\n\tleftcert={$certpath}/cert-{$ph1ent['ikeid']}.crt";
|
||||
}
|
||||
}
|
||||
if (isset($casub)) {
|
||||
$authentication .= "\n\trightca=\"$casub\"";
|
||||
}
|
||||
break;
|
||||
case 'eap-radius':
|
||||
if (isset($ph1ent['mobile'])) {
|
||||
@ -1002,6 +1020,9 @@ EOD;
|
||||
if (!empty($ph1ent['certref'])) {
|
||||
$authentication .= "\n\tleftcert={$certpath}/cert-{$ph1ent['ikeid']}.crt";
|
||||
}
|
||||
if (isset($casub)) {
|
||||
$authentication .= "\n\trightca=\"$casub\"";
|
||||
}
|
||||
break;
|
||||
case 'xauth_psk_server':
|
||||
$authentication = "leftauth = psk\n\trightauth = psk";
|
||||
@ -1015,6 +1036,9 @@ EOD;
|
||||
if (!empty($ph1ent['certref'])) {
|
||||
$authentication .= "\n\tleftcert={$certpath}/cert-{$ph1ent['ikeid']}.crt";
|
||||
}
|
||||
if (isset($casub)) {
|
||||
$authentication .= "\n\trightca=\"$casub\"";
|
||||
}
|
||||
break;
|
||||
case 'hybrid_rsa_server':
|
||||
$authentication = "leftauth = pubkey\n\trightauth = xauth-generic";
|
||||
|
||||
Loading…
Reference in New Issue
Block a user