08-10-2017 09:50 AM - edited 07-05-2021 07:31 AM
Looking at going to a CA certificate to replace the self signed certificate for our guest wireless. Instructions say to install openssl and generate CSR. Are the instructions referring to installing openssl on the controller or will any server/PC that has the openssl application installed do? Just checking before i go through the process and it needs to be done on the controller.
08-10-2017 04:46 PM
Any server will do, install openssl in your computer and follow the instructions, make sure you use openssl version 0.9.8x where 'x' could be any letter.
You can actually generate the CSR from the controller itself, without openssl, but I personally prefer the traditional method.
https://www.cisco.com/c/en/us/support/docs/wireless/4400-series-wireless-lan-controllers/109597-csr-chained-certificates-wlc-00.html
08-24-2017 04:24 AM
Using a single OpenSSL command =
openssl req -newkey rsa:2048 -nodes -sha256 -keyout privkey.key -out cert.csr -subj "/C=US/ST=New York/L=Brooklyn/O=Acme/OU=IT/CN=server.domain.com/emailAddress=it@acme.com"
If you Subject Alternative Names:
openssl req -newkey rsa:2048 -nodes -sha256 -keyout privkey.key -out cert.csr -subj "/C=US/ST=New York/L=Brooklyn/O=Acme/OU=IT/CN=server.domain.com/emailAddress=it@domain.com/subjectAltName=DNS.1=server1.domain.com,DNS.2=server2.domain.com,DNS.3=server3.domain.com"
If using Subject Alternative Names, ensure that whatever is in the common name field is also present in the SAN fields. You can use a wildcard in CN or SAN field (i.e. *.domain.com)
-Brett
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide