A security administrator is configuring a new high-security internal microservice that requires a valid server TLS certificate. Enterprise policy mandates hardware key protection, accurate Subject Alternative Name (SAN) extension mapping, intermediate CA trust anchoring, and OCSP stapling to eliminate direct client queries to the Certificate Authority. In what order should the administrator perform the following steps to deploy the certificate and enable OCSP stapling?
- 1Generate a private key within a Trusted Platform Module (TPM) and create a Certificate Signing Request (CSR) containing the required SAN extensions.
- 2Submit the CSR to the enterprise intermediate Certificate Authority (CA) for identity verification and digital signature.
- 3Install the issued X.509 server certificate and intermediate CA certificate chain onto the microservice server.
- 4Configure the microservice web server to query the CA's OCSP responder to fetch and cache a timestamped OCSP response.
- 5Enable OCSP stapling on the microservice server to attach the cached OCSP response during client TLS handshakes.
Answer
The correct sequence begins with generating the private key and CSR with SAN attributes, followed by submitting the CSR to the intermediate CA for issuance, installing the server certificate and intermediate CA chain, querying and caching the timestamped OCSP response from the responder, and finally enabling OCSP stapling on the web server.
The proper sequence follows standard PKI lifecycle principles: key generation and CSR creation must precede CA submission and signing. Once the CA returns the signed certificate, installing it along with the intermediate CA chain establishes local service readiness. Next, the server must query the OCSP responder to cache a valid, time-stamped status assertion. Finally, enabling OCSP stapling allows the server to serve this cached status to clients during TLS negotiation.
Step-by-Step Solution
Key Concept
PKI Certificate Enrollment and OCSP Stapling Lifecycle Workflow
Estimated Time:2m 0s