I want to capture data/traffic from specific IP address (xxx.xxx.xxx.xxx) in the same LAN. How do I capture in Wireshark? Thanks asked 18 Aug '15, 12:52 wireshark qu... |
One Answer:
First read the following wiki regarding how to setup the environment to properly capture on a wired Ethernet network: https://wiki.wireshark.org/CaptureSetup/Ethernet Then apply the following capture filter to only capture from IP address xxx.xxx.xxx.xxx: host xxx.xxx.xxx.xxx For example, to only capture traffic to/from 192.168.1.10 host 192.168.1.10 answered 18 Aug '15, 13:36 Amato_C |