Before you can begin the process of obtaining a signed certificate, you must first create a private key, then a Certificate Signing Request (CSR) from the console on the
The default cs-admin password is password.
sudo su -
Once you re-enter your cs-admin password at the password prompt, you can now enter commands with root privileges.
You now use the OpenSSL utility on the
At the # prompt, type the following command:
openssl genrsa -out emailgateway.key 4096 -sha256
This command creates an RSA 4096-bit private key and stores it in the PEM-format file PEM (Privacy-Enhanced Mail) emailgateway.key.
You must protect the private key file by storing it in a secure location. We recommend that you restrict access to the server so that only authorized server administrators have access to the private key file. |
You now use the OpenSSL utility on the
At the # prompt, type the following command:
openssl req -new -key emailgateway.key -out emailgateway.csr
This command prompts for the following X.509 attributes of your digital certificate:
This command creates a Certificate Signing Request and stores it in the PEM-format file emailgateway.csr.
You can now use the open SSH session to copy your CSR for submission to your certificate authority (CA).