Hi, In wireshark is there a way to get Stream index if we give packet number? What I want is a stream index so I can feed the stream index and get the whole TCP Session data. asked 25 Apr '16, 12:20 WSharkUser |
One Answer:
yes, like this, e.g. for file "test.pcapng" and frame number 100: tshark -r "test.pcapng" -Y "frame.number==100" -Tfields -e tcp.stream answered 25 Apr '16, 12:48 Jasper ♦♦ |
awesome. That worked like a charm. Thanks so much Jasper.
If an answer has solved your issue, please accept the answer for the benefit of other users by clicking the checkmark icon next to the answer. Please read the FAQ for more information.