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

Identify the IP addresses called by an application

0

I need to identify the IP addresses called by an application. Is it possible to configure WireShark to filter for this, and how?

asked 20 Oct '15, 08:15

Jared's gravatar image

Jared
6112
accept rate: 0%


One Answer:

0

Well, if you know the IP addresses, you can do that

As you seem to be new to Wireshark, please read the Wirshark docs first to understand how it (basically) works.

https://www.wireshark.org/docs/

You can also watch some videos.

https://www.youtube.com/results?search_query=wireshark+tutorial

Then, capture the traffic and filter for the IP addresses like this

ip.addr == a.a.a.a or ip.addr b.b.b.b or ip.addr c.c.c.c

Please replace a.a.a.a, b.b.b.b, etc. with the IP addresses you are looking for.

Regards
Kurt

answered 20 Oct '15, 10:12

Kurt%20Knochner's gravatar image

Kurt Knochner ♦
24.8k1039237
accept rate: 15%

edited 20 Oct '15, 10:13