1

我正在尝试使用以下命令测试我的服务器和 Apple 的沙盒 APNS 服务器之间的连接:

$ openssl s_client -connect gateway.sandbox.apple.com:2195 -cert cert.pem -key key.pem
Enter pass phrase for key.pem:
gethostbyname failure
connect:errno=0

是什么意思gethostbyname failure,原因是什么?

在同一台服务器上,远程登录到端口 2195 工作正常:

$ telnet gateway.push.apple.com 2195
Trying 17.149.36.242...
Connected to gateway.push-apple.com.akadns.net.
Escape character is '^]'.

更新:如果我使用 IP 而不是主机名,它可以正常工作:

$ openssl s_client -connect 17.149.36.242:2195 -cert cert.pem -key key.pem

OpenSSL 无法解析 DNS ?

4

1 回答 1

7

沙盒的正确名称是 gateway.sandbox.push.apple.com,而不是 gateway.sandbox.apple.com。

于 2013-08-20T11:30:14.723 回答