Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to check how many connections are created by my connection pool library to a particular host. I got the tcpdump, from this how to get the number of established connection using wireshark. I can get it using tcptrace tool, but I want to know how to do it using wireshark.

share|improve this question
Why Wireshark? Bro is much better suited for connection-oriented trace analysis. The information you want is readily available from the default connection log. – Matthias Vallentin Apr 7 '12 at 18:36

1 Answer

How many could be how many concurrent which would be a little more difficult, but how many over the course of a packet capture is much easier, and since you are working off a tcpdump, i'm going to assume that's what you are looking for.

If your source ip was 192.168.1.1 and the destination host is 192.168.1.2 then apply a filter like this:

ip.src_host == 192.168.1.1 && ip.dst_host == DESTADDRESS && tcp.flags.syn == 1

If there is the potentially that the destination host in your question is also establishing connections to the source host, then the source host will also be sending back SYN,ACKs to accept those connections, so to filter those out, add this to the end:

&& tcp.flags.ack == 0

When that filter is applied, only new connections will be displayed, and then you can look in the status bar down the bottom of Wireshark. It will show you have many packets there are total, and how many are being displayed. The number of displayed packets will be the number of connections established during the capture.

If you are looking for concurrent connections at any given time, Wireshark might not be your best option, as in that case you would be looking for the number of connectins (SYNs) that happen before the corresponding FINs or RSTs (end of connections), which is more of a statistical function.

Also worth noting that if the source of the capture is on the source host, that SYNs/connections in that capture aren't guaranteed to have been accepted/successful. You would also need to verify that a full three-way handshake was performed for each connection, SYN, SYN-ACK, ACK.

share|improve this answer
Thank you @ D.J. – Rabi Sep 10 '12 at 15:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.