A systems administrator needs to request and deploy a new SSL/TLS certificate for an enterprise web application using an internal Certificate Authority (CA). Arrange the steps of the certificate enrollment and deployment process in the correct chronological order from first to last.
- 1Generate an asymmetric public/private key pair locally on the web application server.
- 2Create a Certificate Signing Request (CSR) containing the public key and Subject Alternative Names (SAN).
- 3Submit the generated CSR to the internal Certificate Authority (CA) for identity verification.
- 4The Certificate Authority signs the request with its private key and issues the X.509 certificate.
- 5Install the X.509 certificate and intermediate chain on the web server and bind it to HTTPS port 443.
Cevap
The correct chronological sequence for certificate enrollment and deployment is: 1) Generate the public/private key pair locally on the web server, 2) Create the Certificate Signing Request (CSR), 3) Submit the CSR to the internal Certificate Authority, 4) The Certificate Authority signs the request and issues the X.509 certificate, and 5) Install the certificate and intermediate chain on the web server and bind it to port 443.
The PKI enrollment lifecycle follows a logical progression starting with local key generation to ensure private key protection. The public key is then packaged into a CSR containing subject parameters and sent to a CA. The CA validates the identity, signs the request using its private key, and returns an X.509 certificate. Finally, the certificate and intermediate trust chain are installed and bound to the server's web service.
Adım Adım Çözüm
Anahtar Kavram
PKI Certificate Request, Issuance, and Deployment Lifecycle