无法连接到 ubuntu 上的 https-“未知的 SSL 协议错误”

无法连接到 ubuntu 上的 https-“未知的 SSL 协议错误”

我似乎无法从我们的 Ubuntu 服务器通过 SSL 连接到特定服务器。在我的 Mac 上,它可以完美地运行。

服务器地址:powerschool.spokaneschools.org

curl -v https://powerschool.spokaneschools.org输出:

  • 重建 URL 至:https://powerschool.spokaneschools.org/
  • DNS 缓存中未找到主机名
  • 尝试 206.193.1.72...
  • 已连接到 powerschool.spokaneschools.org (206.193.1.72) 端口 443 (#0)
  • 成功设置证书验证位置:
  • CAfile:无 CApath:/etc/ssl/certs
  • SSLv3、TLS 握手、客户端问候 (1):
  • 连接到 powerschool.spokaneschools.org:443 时出现未知 SSL 协议错误
  • 关闭连接 0 curl:(35)连接到 powerschool.spokaneschools.org:443 时出现未知 SSL 协议错误

openssl s_client -connect powerschool.spokaneschools.org:443输出:

CONNECTED(00000003)
write:errno=104
---
no peer certificate available
---
No client certificate CA names sent
---
SSL handshake has read 0 bytes and written 0 bytes
---
New, (NONE), Cipher is (NONE)
Secure Renegotiation IS NOT supported
Compression: NONE
Expansion: NONE
SSL-Session:
    Protocol  : SSLv3
    Cipher    : 0000
    Session-ID: 
    Session-ID-ctx: 
    Master-Key: 
    Key-Arg   : None
    PSK identity: None
    PSK identity hint: None
    SRP username: None
    Start Time: 1466726411
    Timeout   : 7200 (sec)
    Verify return code: 0 (ok)
---

我尝试使用不同的 SSL 检查工具检查该网站,一切似乎都正常(除了一些安全问题)。我连接到其他服务器时没有遇到任何问题,即使在该域内也是如此。

操作系统

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 14.04.4 LTS
Release:        14.04
Codename:       trusty

$ curl -V
curl 7.35.0 (x86_64-pc-linux-gnu) libcurl/7.35.0 OpenSSL/1.0.1f zlib/1.2.8 libidn/1.28 librtmp/2.3
Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtmp rtsp smtp smtps telnet tftp 
Features: AsynchDNS GSS-Negotiate IDN IPv6 Largefile NTLM NTLM_WB SSL libz TLS-SRP 

$ openssl version -a
OpenSSL 1.0.1f 6 Jan 2014
built on: Mon May  2 16:53:18 UTC 2016
platform: debian-amd64
options:  bn(64,64) rc4(16x,int) des(idx,cisc,16,int) blowfish(idx) 
compiler: cc -fPIC -DOPENSSL_PIC -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -m64 -DL_ENDIAN -DTERMIO -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -Wl,-Bsymbolic-functions -Wl,-z,relro -Wa,--noexecstack -Wall -DMD32_REG_T=int -DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DAES_ASM -DVPAES_ASM -DBSAES_ASM -DWHIRLPOOL_ASM -DGHASH_ASM
OPENSSLDIR: "/usr/lib/ssl"

答案1

这对我来说是有效的,并且它也应该适用于您的 curl/openssl 版本。errno 104 表示连接重置,因此我认为某些中间设备(如防火墙)导致了问题。从另一个可以确保没有防火墙的网络进行检查。

相关内容