Eclipse Android 模拟器命令行选项 -tcpdump

发布于 2024-11-01 15:58:25 字数 151 浏览 3 评论 0原文

在 Eclipse 的“运行配置”中,我添加了额外的模拟器命令行选项“-tcpdump emulator1.cap”,它开始捕获可由 Wireshark 打开的模拟器的网络流量。凉爽的!

现在我想知道如何以某种方式仅捕获某些主机IP地址?我可以使用显示过滤器,但文件太大。

In Eclipse, Run Configurations, I added additional emulator command line option "-tcpdump emulator1.cap" and it started to capture emulator's network traffic which can be opened by Wireshark. Cool!

Now I wonder how to capture only certain host IP address somehow? I could use Display filter but file gets too big.

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

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

发布评论

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

评论(1

长不大的小祸害 2024-11-08 15:58:25

您可以尝试直接在设备的命令行上运行 tcpdump。然后,您可以指定任意过滤器和选项,如 tcpdump 的手册页中所示。

然后,例如:

adb -e shell tcpdump -w  /sdcard/capture.pcap host 10.0.2.2

完成后:

adb pull /sdcard/capture.pcap

确保您的模拟器实例有足够的 SD 卡空间用于捕获。

You could try running tcpdump directly on the device's command line. Then you can specify arbitrary filters and options as shown in the man page for tcpdump.

Then, for example:

adb -e shell tcpdump -w  /sdcard/capture.pcap host 10.0.2.2

When you're done:

adb pull /sdcard/capture.pcap

Make sure your emulator instance has enough sdcard space for the capture.

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