1
1
I'm using Wireshark on OSX, but I can't make any sense out of the filtering system.
I have this filter set up:
But when I hit that server, I don't see anything show up in the capture log. If I remove the filter, I see all sorts of network traffic. The network request I am doing is to
https://lowdown.secure.omnis.com
from an iOS application in the iOS simulator. The service receives the request, and I get a response. But I don't know how to filter these out of all the noise in Wireshark.
1What happens when you attempt to use the IP address like this:
ip.dst_host eq 216.239.139.240
? – JakeGould – 2014-11-15T23:33:13.937You can filter for the IP (ping the server to get it) with
ip.addr == 123.123.2.1
. Dont you have to use==
instead ofeq
? – nixda – 2014-11-15T23:33:24.737That works, Jake. Drop it in as an answer. :) – Almo – 2014-11-15T23:36:54.403