ฉันต้องการกำหนดค่า OpenSSL เช่นนั้นเมื่อทำงานopenssl req -new
เพื่อสร้างคำขอลงนามใบรับรองใหม่ฉันได้รับแจ้งให้ระบุชื่อเรื่องอื่นที่จะรวมไว้ใน CSR
ฉันได้เพิ่มบรรทัดนี้ใน[req_attributes]
ส่วนของฉันopenssl.cnf
:
subjectAltName = Alternative subject names
นี่เป็นเอฟเฟกต์ที่ต้องการซึ่งตอนนี้ฉันได้รับพร้อมท์สำหรับ SAN เมื่อสร้าง CSR:
$ 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 บ่นว่าไม่สามารถพิมพ์ค่าของแอตทริบิวต์ Alternative Alternative Name จากตัวอย่างออนไลน์ (ที่ผู้ใช้รหัสยาก SAN ใน openssl.cnf ของพวกเขาแทนที่จะแจ้งให้พวกเขาโต้ตอบตามที่ฉันต้องการ) ฉันคาดหวังที่จะเห็นสิ่งนี้แทน:
Attributes:
X509v3 Subject Alternative Name:
DNS:alt1.example.com
ดังนั้นฉันจะสร้าง CSR ที่มีรูปแบบที่ดีได้อย่างไร
openssl
- คุณจะต้องมีสคริปต์ที่จะทำให้ไฟล์การกำหนดค่าหายไป :( PS โซลูชันที่พิสูจน์แล้วว่าทำได้โดยไม่โต้ตอบ: stackoverflow.com/a/9158662/2693875