Чи є спосіб створити SSL запити cert, вказавши всі необхідні параметри в початковій команді? Я пишу на панелі керування веб-сервером на базі CLI і хотів би уникати використання очікувань при виконанні, openssl
якщо можливо.
Це типовий спосіб створення запиту cert:
$ 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
Я сподіваюся побачити щось подібне: (неробочий приклад)
$ 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
Точна сторінка не мала нічого сказати з цього питання, і я не зміг нічого знайти через Google. Повинно чи генерування запитів SSL-cert бути інтерактивним процесом, чи є якийсь спосіб вказати всі параметри в одній команді?
Це в дистрибутиві Linux, який працює під керуванням Debian openssl 1.0.1
.
openssl
зафіксовані ці прапори? ב) Для чого ви шукали Google, щоб знайти це? Дякую!
-subj
Параметр документований (не дуже докладно) на openssl.org/docs/apps/req.html .
openssl.cnf
.