user1332907330
user1332907330

Reputation: 123

How to filter packet on wireshark

How to filter the packets from specific host name and port on wireshark. I'm looking for the syntax to do a capture filter on WireShark, by capturing the traffic on several (specific) IP addresses.

Upvotes: 0

Views: 181

Answers (1)

afkfurion
afkfurion

Reputation: 2865

You can use this capture filter:

host 192.168.1.2 or 192.168.1.3 or 192.168.1.4

Type this command in capture->option->capture filter

Upvotes: 2

Related Questions