This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

# of conntections between two ip

0

new to wireshark and teacher hasn't responded to me, Im trying to find out how many connections(sessions) happen between two IP's. im using filter ip.src==xxx.xxx.xxx.xxx&&ip.dst==xxx.xxx.xxx.xxx&&tcp.syn==1&&tcp.ack==0 but Im pretty sure thats not what I need. any info would help

asked 03 Dec '12, 12:02

EMEDINA's gravatar image

EMEDINA
1111
accept rate: 0%


One Answer:

0

EMEDINA, All you want to see is the number of TCP connections between two PC's? How about this: Create your display filter "ip.addr==xxx.xxx.xxx.xxx&&ip.addr==xxx.xxx.xxx.xxx" (Notice, I'm using ip.addr). Then go to "statistics" "conversations" on the Wireshark munu bar. Select the "TCP" tab and check "Limit to display filter". This should show the the number of TCP sessions between the hosts referenced in the display filter.

Good luck.

Owen

answered 03 Dec '12, 15:54

Owen's gravatar image

Owen
21336
accept rate: 0%