解決方法
OpenSSLバージョン1.1.1(Windows用)をインストールする必要があります。OpenSSLアプリケーションを使用すると、署名付き証明書を作成できます。
CA用の
.key
ファイルと証明書を生成します。コマンドプロンプトで以下のコードを実行します。protect-custom-ca.keyと
protect-custom-ca.derの
ファイル名は、カスタム名で置き換えることができます。
openssl genrsa -out protect-custom-ca.key 2048 openssl req -x509 -new -nodes -key protect-custom-ca.key -sha256 -days 3650 -out protect-custom-ca.der -outform der -subj "/CN=PROTECT Custom CA".
- ESET PROTECT On-Prem 証明書拡張ファイルを作成します。
echo authorityKeyIdentifier=keyid,issuer >>protect.ext echo basicConstraints=CA:FALSE >>protect.ext echo keyUsage=digitalSignature,keyEncipherment,dataEncipherment >>protect.ext echo subjectAltName=DNS:* >>protect.ext
- ESET PROTECT Server 用の鍵と証明書を生成し、
.pfx
ファイルにエクスポートします。パスワードを
適切なパスワードに置き換えます。
openssl genrsa -out protect-server.key 2048 openssl req -new -key protect-server.key -subj "/CN=PROTECT Server" | openssl x509 -req -CA protect-custom-ca.der -CAkey protect-custom-ca.key -CAform DER -out protect-server.crt -days 1825 -sha256 -extfile protect.ext openssl pkcs12 -export -out protect-server.pfx -inkey protect-server.key -in protect-server.crt -passout pass:password
- ESET Management Agent 用の鍵と証明書を生成し、
.pfx
ファイルにエクスポートします。パスワードを
適切なパスワードに置き換えます。
openssl genrsa -out protect-agent.key 2048 openssl req -new -key protect-agent.key -subj "/CN=PROTECT Agent" | openssl x509 -req -CA protect-custom-ca.der -CAkey protect-custom-ca.key -CAform DER -out protect-agent.crt -days 1825 -sha256 -extfile protect.ext openssl pkcs12 -export -out protect-agent.pfx -inkey protect-agent.key -in protect-agent.crt -passout pass:password