다음 명령을 사용하여 OpenSSL을 사용하여 클라이언트 인증 인증서를 구성하려고 합니다.
openssl ca -config intermediate/openssl.cnf \
-extensions usr_cert -days 7200 -notext -md sha256 \
-in intermediate/csr/ADO-CSR0.csr \
-out intermediate/certs/29-12-20/ADO-CSR0.cert.pem
그러나 인증서는 비어 있습니다.
ls -l intermediate/certs/29-12-20
-rw-r--r-- 1 root root 0 Jan 5 17:29 ADO-CSR0.cert.pem
나는 다음과 같은 구성을 가지고 있습니다 :
[ ca ]
# `man ca`
default_ca = CA_default
[ CA_default ]
# Directory and file locations.
dir = /root/ca/intermediate
certs = $dir/certs
crl_dir = $dir/crl
new_certs_dir = $dir/newcerts
database = $dir/index.txt
serial = $dir/serial
RANDFILE = $dir/private/.rand
# The root key and root certificate.
private_key = $dir/private/intermediate.key.pem
certificate = $dir/certs/intermediate.cert.pem
# For certificate revocation lists.
crlnumber = $dir/crlnumber
crl = $dir/crl/intermediate.crl.pem
crl_extensions = crl_ext
default_crl_days = 30
# SHA-1 is deprecated, so use SHA-2 instead.
default_md = sha256
name_opt = ca_default
cert_opt = ca_default
default_days = 375
preserve = no
policy = policy_loose
[ policy_strict ]
# The root CA should only sign intermediate certificates that match.
# See the POLICY FORMAT section of `man ca`.
countryName = match
stateOrProvinceName = match
organizationName = match
organizationalUnitName = optional
commonName = supplied
emailAddress = optional
[ policy_loose ]
# Allow the intermediate CA to sign a more diverse range of certificates.
# See the POLICY FORMAT section of the `ca` man page.
countryName = optional
stateOrProvinceName = optional
localityName = optional
organizationName = optional
organizationalUnitName = optional
commonName = supplied
emailAddress = optional
[ req ]
# Options for the `req` tool (`man req`).
default_bits = 2048
distinguished_name = req_distinguished_name
string_mask = utf8only
# SHA-1 is deprecated, so use SHA-2 instead.
default_md = sha256
# Extension to add when the -x509 option is used.
x509_extensions = v3_ca
[ req_distinguished_name ]
# See <https://en.wikipedia.org/wiki/Certificate_signing_request>.
countryName = Country Name (2 letter code)
stateOrProvinceName = State or Province Name
localityName = Locality Name
0.organizationName = Organization Name
organizationalUnitName = Organizational Unit Name
commonName = Common Name
emailAddress = Email Address
# Optionally, specify some defaults.
countryName_default = DO
stateOrProvinceName_default = Santo Domingo
localityName_default =
0.organizationName_default = Altice Dominicana
#organizationalUnitName_default =
#emailAddress_default =
[ v3_ca ]
# Extensions for a typical CA (`man x509v3_config`).
subjectKeyIdentifier = hash
authorityKeyIdentifier = keyid:always,issuer
basicConstraints = critical, CA:true
keyUsage = critical, digitalSignature, cRLSign, keyCertSign
[ v3_intermediate_ca ]
# Extensions for a typical intermediate CA (`man x509v3_config`).
subjectKeyIdentifier = hash
authorityKeyIdentifier = keyid:always,issuer
basicConstraints = critical, CA:true, pathlen:0
keyUsage = critical, digitalSignature, cRLSign, keyCertSign
[ usr_cert ]
# Extensions for client certificates (`man x509v3_config`).
basicConstraints = CA:FALSE
nsCertType = client, email
nsComment = "OpenSSL Generated Client Certificate"
subjectKeyIdentifier = hash
authorityKeyIdentifier = keyid,issuer
keyUsage = critical, nonRepudiation, digitalSignature, keyEncipherment
extendedKeyUsage = clientAuth, emailProtection
[ server_cert ]
# Extensions for server certificates (`man x509v3_config`).
basicConstraints = CA:FALSE
nsCertType = server
nsComment = "OpenSSL Generated Server Certificate"
subjectKeyIdentifier = hash
authorityKeyIdentifier = keyid,issuer:always
keyUsage = critical, digitalSignature, keyEncipherment
extendedKeyUsage = serverAuth
[ crl_ext ]
# Extension for CRLs (`man x509v3_config`).
authorityKeyIdentifier=keyid:always
[ ocsp ]
# Extension for OCSP signing certificates (`man ocsp`).
basicConstraints = CA:FALSE
subjectKeyIdentifier = hash
authorityKeyIdentifier = keyid,issuer
keyUsage = critical, digitalSignature
extendedKeyUsage = critical, OCSPSigning
도와주세요? 감사합니다, 로널드
답변1
먼저 키를 생성해야 하거나 이미 키를 생성한 후 다음 명령을 사용해야 한다고 생각합니다.
openssl req -out domain.csr -key /path/to/the/key/domain.key -new -sha256 -config openssl.cnf
그런 다음 해당 domain.csr에 12, 24, 36개월 이상 서명해야 합니다.
그 다음에
mv domain.csr domain.crt
그런 다음 루트 및 중간 키와 도메인 domain.csr 파일을 하나로 병합해야 합니다.
내 말은 세 파일의 내용을 모두 복사하여 인증서 파일에 넣어야 한다는 것입니다.crt
인증서가 복사되는 순서가 중요합니다!
- 첫 번째는 도메인 인증서->domain.crt입니다.
- 두 번째는 도메인 위의 중간 인증서 1 -> middle.crt입니다.
- 세 번째는 중간 인증서 2 등입니다.
- 4단계(파일 끝) 루트 인증서 -> root.crt
cer 형식(cer 확장자)의 루트 및 중간 인증서가 있는 경우 다음을 통해 이를 crt로 변환할 수 있습니다.
openssl x509 -inform DER -in intermediate.cer -out intermediate.crt
openssl x509 -inform DER -in root.cer -out root.crt
답변2
Windows 버전의 OpenVPN을 설치하고 OpenSSL에 포함된 도구를 사용하여 CA, server.crt server.key 등을 생성하는 방법에 대한 지침을 확인하는 것이 좋습니다.