user1080390
user1080390

Reputation: 471

Capturing incoming tcp/ip packets

Can anyone give me an example of a wireshark filter for capturing incoming tcp/ip packets, and another for capturing incoming packets on a specific port?

Upvotes: 0

Views: 551

Answers (1)

Cratylus
Cratylus

Reputation: 54074

Here you can find various examples.
For incoming ip packets: ip.src==1.2.3.4 or for packets on specific port tcp.port eq 8080 and you can combine queries with logical operators

Upvotes: 2

Related Questions