从简单的 Linux cli 应用程序检查网络流量
我正在命令行上运行一个小应用程序,并且我正在尝试观察它创建的(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在命令行中使用
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 orwireshark
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