This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

Why wireshark cannot display TLS/SSL

0

Hi, everyone:

Today I have written a simple JAVA program to test communication between SSL client and server.

I run my client and server, and try to use Wireshark to capture the packets. But I could only see "TCP" instead of TLS/SSL in "protocol": alt text

And I just send a string (10 bytes) from client to server. I think the first packets are handshake packets. But why it doesn't show as "TLS/SSL"?

Any one could help me?

Thank you very much!

asked 23 Jun '14, 06:31

lzq8272587's gravatar image

lzq8272587
26457
accept rate: 0%

edited 23 Jun '14, 06:32


One Answer:

2

But why it doesn't show as "TLS/SSL"?

Because it's not on the standard port for SSL/TLS. You can add your port (12120):

Edit -> Preferences -> Protocols -> HTTP -> SSL/TLS Ports

Change it to: 443,12120

Regards
Kurt

answered 23 Jun '14, 07:09

Kurt%20Knochner's gravatar image

Kurt Knochner ♦
24.8k1039237
accept rate: 15%

wow, now I could see TLSv1 in the "protocol".

Thank you very much!

(23 Jun '14, 07:12) lzq8272587