Hi I want to know , if I have a captured traffic file for a day, how can reach the statistics of
thanks asked 14 Apr '14, 22:00 mosa edited 15 Apr '14, 01:32 Kurt Knochner ♦ |
One Answer:
Not that easy to count in Wireshark, as there is no such functionality
Take a look at IO graphs: Statistics -> IO Graph. Count the packet rate with SYN flags (Filter: tcp.flags eq 0x02). This will actually show connection attempts. If a connection fails (no SYN-ACK), it will be counted as well, but for 'statistics' this shouldn't be a problem.
Same as TCP CONNECTIONS PER SECOND, just for port 80 (Filter: tcp.port eq 80)
Please define what a HTTP transaction is in your environment. Regards answered 15 Apr '14, 01:36 Kurt Knochner ♦ |