Esiste un modo per creare richieste di certificati SSL specificando tutti i parametri richiesti nel comando iniziale? Sto scrivendo un pannello di controllo del server Web basato sulla CLI e, se possibile, vorrei evitare l'uso di aspettarsi durante l'esecuzione openssl
.
Questo è un modo tipico per creare una richiesta di certificato:
$ openssl req -new -newkey rsa:2048 -nodes -sha256 -keyout foobar.com.key -out foobar.com.csr
Generating a 2048 bit RSA private key
.................................................+++
........................................+++
writing new private key to 'foobar.com.key'
-----
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [AU]:US
State or Province Name (full name) [Some-State]:New Sweden
Locality Name (eg, city) []:Stockholm
Organization Name (eg, company) [Internet Widgits Pty Ltd]:Scandanavian Ventures, Inc.
Organizational Unit Name (eg, section) []:
Common Name (e.g. server FQDN or YOUR name) []:foobar.com
Email Address []:gustav@foobar.com
Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:
An optional company name []:FooBar
Spero di vedere qualcosa del genere: (esempio poco funzionale)
$ openssl req -new -newkey rsa:2048 -nodes -sha256 -keyout foobar.com.key -out foobar.com.csr \
-Country US \
-State "New Sweden" \
-Locality Stockholm \
-Organization "Scandanavian Ventures, Inc." \
-CommonName foobar.com \
-EmailAddress gustav@foobar.com \
-Company FooBar
La bella pagina man non aveva nulla da dire in proposito, né sono riuscito a trovare nulla tramite Google. La generazione di richieste di certificati SSL deve essere un processo interattivo o esiste un modo per specificare tutti i parametri in un singolo comando?
Questo è su una distribuzione Linux derivata da Debian in esecuzione openssl 1.0.1
.
openssl
documentate quelle bandiere? ב) Cosa hai cercato su Google per trovarlo? Grazie!
-subj
parametro è documentato (non in modo molto dettagliato) su openssl.org/docs/apps/req.html .
openssl.cnf
.