我的服务器兼容 TLS 1.2 吗?

我的服务器兼容 TLS 1.2 吗?

我只需要通过以下消息了解此服务器是否兼容 TLS 1.2:

remote:~ Xserver$ openssl s_client -connect X:443 -tls1_2
CONNECTED(00000003)
140735304528736:error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number:s3_pkt.c:362:
---
no peer certificate available
---
No client certificate CA names sent
---
SSL handshake has read 5 bytes and written 7 bytes
---
New, (NONE), Cipher is (NONE)
Secure Renegotiation IS NOT supported
Compression: NONE
Expansion: NONE
No ALPN negotiated
SSL-Session:
    Protocol  : TLSv1.2
    Cipher    : 0000
    Session-ID: 
    Session-ID-ctx: 
    Master-Key: 
    Key-Arg   : None
    PSK identity: None
    PSK identity hint: None
    SRP username: None
    Start Time: 1480093191
    Timeout   : 7200 (sec)
    Verify return code: 0 (ok)
---

任何人?

答案1

部分地,服务器支持 TLS 1.2,但您没有发送证书来实际进行加密。

TLS1.2 也是 2008 年的标准。

https://www.feistyduck.com/ssl-tls-and-pki-history/

答案2

协议:TLSv1.2
...
验证返回代码:0(确定)

好像是的。

相关内容