Find answers to your technical questions and learn how to use our products
Search suggestions:
Use this procedure to generate a CSR using OpenSSL.
You can also generate a CSR using the Avaya Aura® Device Services web administration portal.
Ensure that you have the OpenSSL utility.
[ req ] req_extensions = v3_req distinguished_name = req_distinguished_name [req_distinguished_name] [ v3_req ] basicConstraints = CA:FALSE keyUsage = nonRepudiation, digitalSignature, keyEncipherment subjectAltName = @alt_names [alt_names] DNS.1 = dnsserver10927.company.com DNS.2 = dnsserver10938.company.com DNS.3 = dnsserver10955.company.com
alt_names
localhost.localdomain
localhost6.localdomain
openssl req -out <CSR_request_file>.csr -newkey rsa:2048 -nodes –keyout <CSR_key_file>.key -config <configuration_file>
In this command:
<CSR_request_file>.csr specifies a CSR file name.
<CSR_request_file>.csr
<CSR_key_file>.key specifies a file containing a private key that is used to add the signed certificate to the system.
<CSR_key_file>.key
<configuration_file> specifies the OpenSSL configuration file that was created in the previous step.
<configuration_file>
openssl req -out createCSR.csr -newkey rsa:2048 -nodes –keyout keyCSR.key -config configCSR.config
Previous Topic
Next Topic