Ask Your Question
0

conversation completeness incomplete 60

asked 2023-12-28 13:59:20 +0000

Tom gravatar image

Hi, I can't find any documentation on this code "60" about "conversation completeness". I've a lot of this incomplete connections. Has Wireshark a service to analyze a problem?

edit retag flag offensive close merge delete

Comments

Would you be so kind as to explain your question?

hugo.vanderkooij gravatar imagehugo.vanderkooij ( 2023-12-28 14:34:28 +0000 )edit

What else does it say, beyond code "60"?

Jaap gravatar imageJaap ( 2023-12-28 17:28:06 +0000 )edit

Documentation in the WSUG: 7.5. TCP Analysis

TCP Conversation Completeness

See these Gitlab issues for related discussions:
18911: TCP Completeness elaborate by expand option
19092: TCP Conversation Completeness : FTP created conversations issue

Chuckc gravatar imageChuckc ( 2023-12-29 01:29:02 +0000 )edit

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-12-28 19:16:46 +0000

SYN-bit gravatar image

TCP conversation completeness is a bitwise field where the occurance of certain flags over the conversation is recorded and then every packet in the TCP conversation gets that value for conversation completeness. The flags being recorded are:

1 - SYN from client 2 - SYN/ACK from server 4 - bare ACK (any direction) 8 - data (any direction) 16 - FIN (any direction) 32 - RST (any direction)

Which means a TCP conversation with completeness value 60 has seen a bare ACK, data, a FIN and a RST, but no SYN from the client and no SYN/ACK from the server. In short, the capture was started in the middle of the session. That's why it is marked as "Incomplete".

edit flag offensive delete link more

Comments

The bits of that field are defined by Wireshark, not by any protocol, so there's no protocol-level significance to the value 60. It's the individual bits, as per @SYN-bit, that matter; in this case, they mean, as he indicates, that, because the packet capture was started in the middle of the TCP session, Wireshark didn't see the connection being established, it just saw data transferred after the connection was established and then saw the end of the connection (which involved an RST).

Perhaps that field should explain what at least some values mean.

Guy Harris gravatar imageGuy Harris ( 2023-12-28 20:36:44 +0000 )edit

Perhaps that field should explain what at least some values mean.

It does, the tree item has a subtree which lists the individual flags. Therefore I asked "What else does it say?", to see if OP is aware of this fact, or guide to it. Whether the (decimal) value has any significance, other than a value to filter on, is debatable IMHO.

Jaap gravatar imageJaap ( 2023-12-29 12:58:28 +0000 )edit

Many thanks to all

Tom gravatar imageTom ( 2023-12-29 16:52:51 +0000 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2023-12-28 13:59:20 +0000

Seen: 323 times

Last updated: Dec 28 '23