TN.
TN.

Reputation: 19860

How to capture only incoming TCP streams in WireShark?

How to capture only incoming TCP streams in WireShark?

(I would like to capture only HTTP connections to my web server, not any outgoing HTTP connections from applications.)

Upvotes: 4

Views: 10905

Answers (2)

wangf
wangf

Reputation: 925

Based on my test, 1. You can use this capture filter for the WireShark that running on the server which you want monitor incoming packets:

dst host 10.58.123.456 and dst port 8080
  1. And you can use following result filter to view traffic comes from certain client:

    ip.src_host == 10.78.123.456

Upvotes: 3

Robᵩ
Robᵩ

Reputation: 168836

Use a filter like (ip dst host 192.168.0.1 and tcp dst port 80) or (ip src host 192.168.0.1 and tcp src port 80).

Upvotes: 1

Related Questions