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

HTTP traffic sniffing

0

I have question about using Wireshark filter. I want to sniff HTTP traffic on destination IP for this case: in our company we have many computers and of course communication server (Microsoft server). All of computers are in domain! So, my question: have computers in domain higher level of security?

I have try to sniff dest. ip, and as result get back only ARP packages. Then I try with this filter: (ip.dst == (com.serv.IP) && ip.src == (client.IP)) && http

(com.serv.IP) and (client.IP) are IP addresses of course.

Can somebody please help me, how to use filter to sniff HTTP traffic?

asked 28 Feb '13, 00:53

ninja4it's gravatar image

ninja4it
11114
accept rate: 0%

edited 28 Feb '13, 00:57


One Answer:

4

The issue is likely to be your network architecture. Most networks these days are switched which means the switch will only route packets out of the switch port that are directed to the host on that port, along with broadcast packets which go to all hosts.

See the Wiki page on Capture Setup for more info.

answered 28 Feb '13, 01:38

grahamb's gravatar image

grahamb ♦
19.8k330206
accept rate: 22%

Thanks for reply!

So, we must change switch settings .... and what is important for http traffic?

I have just one quick question: Is this may be possible, because we have Proxy server?

(17 Apr '13, 01:19) ninja4it

Assuming you're using Ethernet, then there are some suggestions on the Capturing on Ethernet wiki page on how to make your capture in a switched environment. You'll have to choose one of the options that is most suitable for your particular environment. If you tell us some more about your environment we may be able to offer appropriate suggestions.

(17 Apr '13, 01:32) grahamb ♦

because we have Proxy server?

well, if you have a proxy server, why not capture on the proxy server itself?

(17 Apr '13, 12:42) Kurt Knochner ♦