从 unix 访问 FTPS 站点时出错 - “curl: (35) 连接到 时出现未知的 SSL 协议错误”
我在 Windows Server 2008 机器上使用 filezilla ftp 服务器。我已经在此服务器上设置了 FTPS 站点。当我创建任何 fpts 帐户并从任何 ftp Windows 客户端访问它时,它工作正常。但是,当我尝试从 Unix 机器访问此 FTPS 站点时,它提示我错误 -
“curl: (35) 连接到客户端的“时出现未知的 SSL 协议错误。”
我检查了服务器上的日志,上面写着连接已断开。
服务器日志:
150 连接已接受
226 转移成功
已断开连接。
有人可以建议我解决此错误吗?谢谢!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据报告,某些版本的 OpenSSL 在连接到某些 SSL 服务器时出现问题。如果可以的话,尝试在 Unix 计算机上升级 OpenSSL,或者使用curl 的 -3 选项强制建立 SSL 3.0 连接。这假设您没有尝试与服务器的未加密端口建立隐式 ftps 连接。这会在服务器不期望的情况下导致 SSL 握手,并可能导致您所看到的 SSL 错误。
Some versions of OpenSSL have been reported to have problems connecting to some SSL servers. Try upgrading OpenSSL on the Unix machine if you can, or force an SSL 3.0 connection with curl's -3 option. This assumes that you're not trying to make an implicit ftps connection to the server's unencrypted port. That would cause an SSL handshake when the server isn't expecting it, and could cause an SSL error like you're seeing.