wireshark 获取指定进程id的数据

>netstat -aon | findstr 11380
  TCP    191.127.1.7:57936      29.225.107.216:3734    ESTABLISHED     11380

过滤器:

tcp&&ip.addr==191.127.1.7&&tcp.port==57936&&ip.dst==29.225.107.216&&tcp.dstport==3734&&tcp.len>0
原文地址:https://www.cnblogs.com/ajanuw/p/13690095.html