這是否意味著 SSLv3 已啟用?

這是否意味著 SSLv3 已啟用?

New, Cipher 是否表示 SSLV3 已啟用或停用?

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
    Krb5 Principal: None
    Start Time: 1403907236
    Timeout   : 7200 (sec)
    Verify return code: 0 (ok)
---

答案1

CONNECTED(00000003)
write:errno=104
....
SSL handshake has read 0 bytes and written 0 bytes
...
    Cipher    : 0000

這意味著沒有完成 SSL 握手(沒有為 SSL 握手傳輸位元組)。嘗試啟動握手會導致 errno=104,這至少在 Linux 上是「連線由對等方重置」。這是由於 TCP 連線建立後,伺服器立即關閉了與客戶端的連線所造成的。

相關內容