Install Certificate - Cisco ASA 5500
Feb 15, 2024
Install Certificate - Cisco ASA 5500
Installing Your Certificate on a Cisco ASA 5500 VPN/Firewall
Article Purpose: This article provides step-by-step instructions for installing your certificate on a Cisco ASA 5500 VPN/Firewall. If this is not the solution you are looking for, please search for your solution in the search bar above.
- You will receive your SSL certificate and intermediate certificate by email. Copy each certificate from the email, paste each one into a separate text editor, and save the files to a safe location with a ".crt" extension (e.g., "gs_sslcertificate.crt", "gs_intermediate.crt").
- In ASDM select Configuration and then Device Management.
- Expand Certificate Management and select CA Certificates. Click Add.
- Selected the option Install From a File. Browse to your "gs_intermediate.crt" file and then click Install Certificate. Your intermediate certificate file is now installed. Next, you need to install the "gs_sslcertificate.crt" file.
- In ASDM select Configuration and then Device Management.
- Expand Certificate Management and select Identity Certificates.
- Select the appropriate identity certificate from when your CSR was generated (the "Issued By" field should show as not available and the "Expiry Date" field will show" Pending…"). Click Install.
- Browse to the "gs_sslcertificate.crt" provided by GlobalSign and click Install Certificate.
You should receive confirmation that your certificate installation was successful.
Configuring the WebVPN with ASDM to Use the New SSL Certificate
- In ASDM select Configuration and then Device Management.
- Click Advanced and then SSL Settings.
- From Certificates, choose the interface used to terminate WebVPN sessions. Click Edit.
- From the Certificate drop-down, select the newly installed certificate. Click OK. Click Apply.
SSL Certificate Installation From the Cisco ASA Command Line (Alternate Installation Method)
- From the ciscoasa(config)# line, enter the text:
crypto ca authenticate my.globalsign.trustpoint
"My.globalsign.trustpoint" is the name of the trustpoint created when your certificate request was generated.
- Enter the entire body of the "gs_intermediate.crt" file followed by the word "quit" on a line by itself. The "gs_intermediate.crt" file can be opened and edited with a standard text editor. The entire body of that file should be entered when prompted.
- When asked to accept the certificate, enter "Yes".
- When the certificate has been successfully imported, enter "Exit". Your Intermediate certificate file is now installed. You will now need to install the "gs_sslcertificate.crt" file.
- From the ciscoasa(config)# line, enter the text:
crypto ca import my.globalsign.trustpoint certificate
"My.globalsign.trustpoint" is the name of the trustpoint created when your certificate request was generated.
- Enter the entire body of the "gs_sslcertificate.crt" file followed by the word "quit" on a line by itself. The "gs_sslcertificate.crt" file can be opened and edited with a standard text editor. The entire body of that file should be entered when prompted. You should receive a message that the certificate was successfully imported.
Configuring WebVPN to Use the New SSL Certificate From the Cisco ASA Command Line
- From the ciscoasa(config)# line, enter the text:
ssl trust-point my.globalsign.trustpoint outside wr mem
"My.globalsign.trustpoint" is the name of the trustpoint created when your certificate request was generated. "Outside" is the name of the interface being configured.
- Save the configuration.