我在连接到 epp 服务器时遇到问题:epptest.ficora.fi 我正在使用这个 PHP 库:https ://packagist.org/packages/metaregistrar/php-epp-client
$conn = new eppConnection(false);
$conn->setHostname('epptest.ficora.fi');
$conn->setPort(700);
$realPath = realpath(__DIR__ . '/../../../../../../../data/keys/ficora.pem');
if (!$realPath) {
throw new \Exception();
}
$conn->enableCertification($realPath, 'passphrase');
$conn->connect();
return $conn->login();
响应:“连接到 ssl://epptest.ficora.fi:700 时出错:连接被拒绝(代码 111)”
已经添加了我的 IP 地址。端口是 700 我使用以下方式生成证书:http: //grahamc.com/blog/openssl-madness-how-to-create-keys-certificate-signing-requests-authorities-and-pem-files/
在 epptest ui 我上传了.crt 文件有什么想法,有 FICORA 经验的人吗?谢谢