Friday, July 9, 2010

Wireshark TCP Protocol Sequence Number Customized (by Ray Tompkins)

In the Under the Hood technical article we’re moving onward in the discussion how to customize protocols within the Wireshark Analyzer. This simple but helpful tip is to turn on the TCP Analyze Sequence Numbers. This feature will convert the ACK and sequence number into a much easier value for us to interpret.

Go into the Preference menu and opening up the Protocols where you’ll find the known protocols that Wireshark decodes, see Figure 1:1. Move to the TCP and there’s the option to turn on “Analysis TCP sequence numbers”. In Figure 1:2 you see the results in packet with the sequence number changes from 1486019313 to 1.



Sequence Number

When a TCP session is established, indicated with the SYN, SYN ACK, ACK packets, the first TCP packet contains both the common port and the ephemeral port, “meaning short lived” and sequence number. There are also Flags, Window Size, checksum and options, and we’ll review those in the future. TCP uses the sequence and acknowledgment numbers to track the receipt of data bytes. It’s a random number for the purpose to reduce the predictability of the next TCP connection’s sequence number.

So in Figure 1:1 in packet 3 the initial sequence number is 1486019312 the corresponding ACK the response in packet 4 is Seq=1486019313. Wireshark has created an easier way reducing the initial sequence number to ZERO. It makes is easier to track as you look through the packets in the trace file. In example Figure 1:2 viewing the same ACK and sequence number we see how much easier it is, with the Seq=0 and the Ack=1.


Figure 1:1 Wireshark Edit>Preference>Protocols>TCP (Analysis TCP sequence numbers)


Wireshark TCP Sequence Number


Figure 1:2 Wireshark Edit>Preference>Protocols>TCP (Analysis TCP sequence numbers SELECTED)

Wireshark TCP Sequence Number  Selected

No comments:

Post a Comment