openssl req -new
새 인증서 서명 요청을 생성하기 위해 실행할 때 CSR에 포함 할 대체 주체 이름을 묻는 메시지가 표시되도록 OpenSSL을 구성하려고합니다 .
이 [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