I want to open an static web page and run wireshark. How can I filter the last packet which comes form that page? Is it true to use tcp.flag.fin? asked 07 Mar '11, 23:12 A B |
One Answer:
It could be using the fin bit, in which case you'd filter for My approach would be slightly different than yours though: I'd search for the URL of the "GET" request (if it's not easy to spot right away), and then use the popup menu "Conversation Filter -> TCP". That way you get the whole communication, including the last packet, which is very easy to jump to. answered 08 Mar '11, 10:43 Jasper ♦♦ |
Thanks,so helpful answer.