Wireshark Display Filter protocol==TLSV1? (and PacketLength)

filteringwireshark

What would the filter expression be to just select the protocols where the protocol = TLSV1?
Something obvious like protocol == "TLSV1" or TCP.protocol == "TLSV1" is apparently not the right way.

ip.proto == "TLSV1" says "ip.proto cannot accept strings as values"

Update – additional tips:

Another great but hidden search is on PacketLength:
You can add packet length to your display by clicking "Edit Preferences" (menu or icon), and adding the PacketLength as a new column, but to filter on it you have to use the more cryptic: frame.len == ### where ### is your desired number. We were using this to determine how many packets had been sent and/or received, when you filter, the status-bar at the bottom of the screen shows the number of items matching the filter.

Best Answer

ssl.record.version == 0x0301

That tells Wireshark to only display packets that are SSL conversations using TLS semantics.