簡體   English   中英

Epp Ficora-連接被拒絕

[英]Epp Ficora - Connection refused

我在連接到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的經驗嗎? 謝謝

問題出在關閉的Ficora端口700 nmap epptest.ficora.fi

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM