How to Publish New Certificate Revocation List (CRL) from Offline Root CA to Active Directory and Inetpub
In order to Publish a new CRL from the offline Root CA to the Enterprise Sub CA you need to do the following:
Publish a new CRL on the Root CA, this can be done by Right Click the "Revoked Certificates" - All Tasks - Publish
2. Copy the CRL file from the Root CA located under %systemroot%\system32\certsrv\certenroll to the Sub CA Server
3. Turn off the Root CA
4. Copy the above file to the InetPub folder (HTTP Path) in the Sub CA server which is by default located under the C:\inetpub\wwwroot\Certdata
5. Open an Admin Command Prompt and run the following command to publish it to the Active Directory (LDAP Path).
certutil -f -dspublish "C:\Inetpub\wwwroot\certdata\RootCA.crl"
This process of renewing the CRL and publishing a new one is manually done since the Root CA is offline and that's why its better to make the CRL publish interval more than the default value so you won't do it frequently. You may also want to set an automated reminder before the next renewal date.
Comments
Post a Comment