Cisco 3650 Switch SSL Cert
Posted: Wed Jun 03, 2026 2:26 pm
1. Set hostname + domain (required)
2. Generate RSA keypair
3. Create a trustpoint
dont forget to change cisco.zemerdon.com to whatever your FQDN will be.
4. Enroll (create the certificate)
When prompted:
6. Verify
Code: Select all
conf t
hostname cisco
ip domain-name zemerdon.com
end
write memoryCode: Select all
conf t
crypto key generate rsa modulus 2048 label cisco-https-key
enddont forget to change cisco.zemerdon.com to whatever your FQDN will be.
Code: Select all
conf t
crypto pki trustpoint CISCO-HTTPS
enrollment selfsigned
subject-name CN=cisco.zemerdon.com
revocation-check none
rsakeypair cisco-https-key
endCode: Select all
crypto pki enroll CISCO-HTTPS- Answer yes to accept self-signed cert
- Confirm generation
Code: Select all
conf t
ip http secure-trustpoint CISCO-HTTPS
ip http secure-server
end
write memoryCode: Select all
show crypto pki certificates CISCO-HTTPS
show ip http server secure status