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.
我在命令行上运行一个小应用程序,我正在尝试观察它创建的(http)网络流量。
是否有某种包装程序(如“时间”或“手表”)可以显示进出我的应用程序的所有网络流量?(或者至少,在文件中复制一份)
tcpdump在命令行或wireshark桌面中使用。
tcpdump
wireshark
例如,捕获网络流量。 tcpdump -s0 -i any -wfile.pcap port 80 要直接观看,请删除-wfile.pcap
tcpdump -s0 -i any -wfile.pcap port 80
-wfile.pcap
读取以前保存的文件 tcpdump -r file.pcap
tcpdump -r file.pcap
但是对于网络流量,如果您有兴趣观看我喜欢使用的 http 流tcpflow -C port 80
tcpflow -C port 80