Let's troubleshoot... We also do trainings .. Checkout our training page https://asame2.blogspot.com/p/we-also-deliver-trainings.html

Featured Post

How to generate a CSR on Cisco ASA using CLI? CSR- (Certificate signing request)

First thing we need is an RSA key pair:   crypto key generate rsa label SSL-Key modulus 1024 noconfirm Create a trust-point crypto ca...

Recent Comments

Recent Post

Saturday 30 June 2018

How to generate a self signed certificate on ASA using CLI?


First thing we need is an RSA key pair:

  crypto key generate rsa label SSL-Key modulus 1024 noconfirm

Create a trust-point

crypto ca trustpoint SSL-trustpoint
subject-name CN=10.197.222.147 ****** This is the IP address of my ASA. You might have an FQDN
  keypair SSL-Key **** Call the key pair under trustpoint.
  fqdn none
  enrollment self **** This is used if you need to generate a self signed certificate.





So,

Here are all the commands at once that you need:
======================================================
crypto key generate rsa label SSL-Key modulus 1024 noconfirm
!
 crypto ca trustpoint SSL-trustpoint
subject-name CN=10.197.222.147
keypair SSL-Key
  fqdn none
enrollment self 
======================================================

0 comments: