我正在开发一个SLES 11 SP4盒,并试图连接到主机api.onedrive.com。由于几天后,此连接中断,并返回:
# curl https://api.onedrive.com
curl: (35) error:1408D13A:SSL routines:SSL3_GET_KEY_EXCHANGE:unable to find ecdh parameters我怀疑SLES 11附带的OpenSSL版本无法处理这个连接。
是否有某些backports、存储库或另一种方法使这些连接再次工作?
发布于 2017-09-21 13:42:36
SLES 11使用旧的OpenSSL 0.9.8,不能处理诸如ECDH (openssl ciphers -v)这样的TLS1.2密码。您可以使用:
curl --ciphers AES256-SHA https://api.onedrive.comhttps://serverfault.com/questions/872647
复制相似问题