Multiple CRLs one CA
Posted: Thu Jun 22, 2023 2:44 pm
Hi all.
Is it possible to use multiple CRLs from one CA in OpenVPN configuration?
I have windows CA with 2 crls:
one updates every 12 hours - "Delta" CRL and second updates every 5 days "main" crl.
I concatenate them by openssl into one .pem file (just conver from DER to .pem and write into one crl.pem file) and OpenVPN server sees them, but blocking revoked certs only from one of them - "Delta" CRL.
It doesn't matter which one standing first in .pem file: delta or main.
OpenVPN server writes on load:
So it can read them: delta and main.
Here is ca/crl config:
How to force it to not only read all CRLs, but use it on client certificates too?
Is it possible to use multiple CRLs from one CA in OpenVPN configuration?
I have windows CA with 2 crls:
one updates every 12 hours - "Delta" CRL and second updates every 5 days "main" crl.
I concatenate them by openssl into one .pem file (just conver from DER to .pem and write into one crl.pem file) and OpenVPN server sees them, but blocking revoked certs only from one of them - "Delta" CRL.
It doesn't matter which one standing first in .pem file: delta or main.
OpenVPN server writes on load:
Code: Select all
CRL: loaded 2 CRLs from file /etc/openvpn/ssl/crl.pem
Here is ca/crl config:
Code: Select all
ca "/etc/openvpn/ssl/ca.crt"
cert "/etc/openvpn/ssl/openvpnsrv.crt"
key "/etc/openvpn/ssl/openvpnsrv.key"
dh "/etc/openvpn/ssl/dh.pem"
crl-verify "/etc/openvpn/ssl/crl.pem"