From a PCAP Trace how to identify tcp SYN frames that have not received tcp SYN/ACK ? asked 26 Sep '11, 21:12 Norbert |
2 Answers:
Here's the gist of an idea:
answered 28 Sep '11, 07:26 Bill Meier ♦♦ edited 28 Sep '11, 07:30 |
Another nice move might be to filter for tcp.flags.syn==1 and then go to conversation statistics. There you can sort by number of packets and those sessions with only 1 to a few packets outgoing and zero incoming are the ones not getting SYN/ACK back. Then go .csv Copy etc. Sorry, this is not professional but I had no time to try scripting stuff ;) answered 28 Sep '11, 07:30 Landi edited 28 Sep '11, 07:31 |