从简单的 Linux cli 应用程序检查网络流量

发布于 2024-08-12 00:53:05 字数 114 浏览 7 评论 0原文

我正在命令行上运行一个小应用程序,并且我正在尝试观察它创建的(http)网络流量。

是否有某种包装程序(例如“时间”或“手表”)可以显示进出我的应用程序的所有网络流量? (或者至少在文件中复制一份)

I'm running a small app on the command line, and I'm trying to watch the (http) network traffic it creates.

Is there some kind of wrapper program (like 'time', or 'watch') which can display all network traffic to and from my app? (Or at least, make a copy of it in a file)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疯狂的代价 2024-08-19 00:53:05

在命令行中使用 tcpdump 或在桌面中使用 wireshark

例如,捕获网络流量。
tcpdump -s0 -i any -wfile.pcap 端口 80
要观看它,请直接删除 -wfile.pcap

要读取以前保存的文件
tcpdump -r file.pcap

但是,对于网络流量,如果您有兴趣观看 http 流量,我喜欢使用 tcpflow -C port 80

Use tcpdump in command line or wireshark in desktop.

For example, to capture web traffic.
tcpdump -s0 -i any -wfile.pcap port 80
To watch it directly remove the -wfile.pcap

To read a previously saved file
tcpdump -r file.pcap

However for web traffic if you are interested of watching the http flow as it comes I like to use tcpflow -C port 80

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文