How to capture only incoming TCP streams in WireShark?

TN. picture TN. · Aug 4, 2011 · Viewed 9.4k times · Source

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.)

Answer

wangf picture wangf · Jun 24, 2015

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