Which display filter in Wireshark selects packets belonging to a specific TCP stream by index?

Study for the Wireshark Block 5 Exam. Prepare with flashcards and multiple choice questions, each offering hints and explanations. Ace your exam with the best resources!

Multiple Choice

Which display filter in Wireshark selects packets belonging to a specific TCP stream by index?

Explanation:
To isolate all packets from one TCP conversation, filter on the TCP stream index. Each TCP connection in Wireshark gets a stream number exposed as the field tcp.stream. Using tcp.stream eq <index> shows every packet that belongs to that specific TCP stream, giving you exactly the packets from that one connection. Other filters don’t target the stream: tcp.port eq 80 narrows traffic to port 80 (HTTP in general, across many streams), ip.addr == x.x.x.x filters packets involving a particular IP (again across streams), and http.request filters only HTTP requests, which can come from multiple TCP streams.

To isolate all packets from one TCP conversation, filter on the TCP stream index. Each TCP connection in Wireshark gets a stream number exposed as the field tcp.stream. Using tcp.stream eq shows every packet that belongs to that specific TCP stream, giving you exactly the packets from that one connection.

Other filters don’t target the stream: tcp.port eq 80 narrows traffic to port 80 (HTTP in general, across many streams), ip.addr == x.x.x.x filters packets involving a particular IP (again across streams), and http.request filters only HTTP requests, which can come from multiple TCP streams.

Subscribe

Get the latest from Passetra

You can unsubscribe at any time. Read our privacy policy