Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 wireshark 来找出有多少外部 IP 地址是先前捕获的通信的一部分。有什么方法可以使用过滤器或统计菜单找到这个吗?
命令行是你的朋友:
$ tshark -r dump.pcap | awk '{ print $3 }' | sort | uniq -c 602 a.b.c.d 7 A.B.C.D 669 W.X.Z.Y
GUI 人应该使用菜单选项:
Statistics->Endpoints