Curl AIX 上的 SSL 错误

Curl AIX 上的 SSL 错误

大家好,我对卷曲和连接还很陌生。我在使用curl命令时遇到以下问题:

卷曲https://example.com/realms/apigw-auth-dev/protocol/openid-connect/token 卷曲:(35)连接到examples.com时出现未知的SSL协议错误:443

我尝试使用以下命令从 example.com 所在位置导入根证书:

keytool -import -file root.crt -alias CertAuth -keystore“keystorefile”

但这没有帮助。任何意见将不胜感激。谢谢!

我使用的是 AIX 7.2

curl 7.44.0 (powerpc-ibm-aix6.1.0.0) libcurl/7.44.0 OpenSSL/1.0.2u zlib/1.2.12 协议: dict file ftp ftps gopher http https imap imaps pop3 pop3s rtsp smb smbs smtp smtps telnet tftp功能: IPv6 大文件 NTLM NTLM_WB SSL libz TLS-SRP UnixSockets

openssl 版本 OpenSSL 1.0.2u 2019 年 12 月 20 日

卷曲 -v 结果:

curl -v https://example.com/realms/apigw-auth-dev/protocol/openid-connect/token
*   Trying 10.110.255.70...
* Connected to example.com (10.110.255.70) port 443 (#0)
* Cipher selection: ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTH
* TLSv1.2 (OUT), TLS Unknown, Certificate Status (22):
* TLSv1.2 (OUT), TLS handshake, Client hello (1):
* TLSv1.2 (IN), TLS handshake, Server hello (2):
* TLSv1.2 (IN), TLS handshake, Certificate (11):
* TLSv1.2 (OUT), TLS alert, Server hello (2):
* Unknown SSL protocol error in connection to example.com:443
* Closing connection 0
curl: (35) Unknown SSL protocol error in connection to example.com:443

相关内容