OpenSSLを構成してopenssl req -new
、新しい証明書署名要求を生成するために実行するときに、CSRに含める代替サブジェクト名の入力を求められるようにします。
私の[req_attributes]
セクションにこの行を追加しましたopenssl.cnf
:
subjectAltName = Alternative subject names
これには、CSRを生成するときにSANを要求するという望ましい効果があります。
$ openssl req -new -out test.csr -key ./test.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) [US]:
State or Province Name (full name) [New York]:
Locality Name (eg, city) []:
Organization Name (eg, company) [Example Co]:
Organizational Unit Name (eg, section) []:
Common Name (e.g. server FQDN or YOUR name) []:test.example.com
Email Address []:
Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:
An optional company name []:
Alternative subject names []:DNS:alt1.example.com
上記の例でDNS:alt1.example.com
は、SANの入力を求められたときに入力しました。
問題は、結果のCSRが適切にフォーマットされていないように見えることです。
$ openssl req -text -in ./test.csr
Certificate Request:
Data:
Version: 0 (0x0)
Subject: C=US, ST=New York, O=The Banes, CN=test.thebanes.org
Subject Public Key Info:
Public Key Algorithm: rsaEncryption
Public-Key: (2048 bit)
Modulus:
[...]
Exponent: 65537 (0x10001)
Attributes:
X509v3 Subject Alternative Name:unable to print attribute
OpenSSLは、サブジェクトの別名の値を出力できないと不平を言っています。オンラインの例(人々がSANをopenssl.cnfにハードコーディングし、私が望むように対話形式でプロンプトを出すのではない)から、代わりにこれを見ることを期待しています:
Attributes:
X509v3 Subject Alternative Name:
DNS:alt1.example.com
それでは、インタラクティブにプロンプトが出されるSANを使用して、整形式のCSRを生成するにはどうすればよいですか?
openssl
ます。そのためには、その構成ファイルを破壊するスクリプトが必要になります。非対話的にここにあることを行うには:( PS A実績のあるソリューション:stackoverflow.com/a/9158662/2693875