hyper-v复制配置基于证书身份验证报错,无法检查证书是否吊销
您好
我有两台windows server 2022 工作组,这两台机器不能加入域,环境中没有企业CA,不能连接外网,两台机器安装了hyper-v,配置Hyper-v复制,因为不能加入域,所以只能使用“使用基于证书的身份验证(HTTPS)”
使用以下两条命令创建了根证书和服务器证书,但是Hyper配置时提示“证书身份验证报错,无法检查证书是否吊销”
New-SelfSignedCertificate -Type “Custom” -KeyExportPolicy “Exportable” -Subject “CN=rootca” -CertStoreLocation “Cert:\LocalMachine\My” -KeySpec “Signature” -KeyUsage “CertSign”
New-SelfSignedCertificate -type “Custom” -KeyExportPolicy “Exportable” -Subject “CN=hypv-europe” -CertStoreLocation “Cert:\LocalMachine\My” -KeySpec “KeyExchange” -TextExtension @(“2.5.29.37={text}1.3.6.1.5.5.7.3.1,1.3.6.1.5.5.7.3.2”) -Signer “Cert:LocalMachine\My\6A7196D9759FC2F7C49D62E08FA7195310DE5EB7” -Provider “Microsoft Enhanced RSA and AES Cryptographic Provider”