Eclipse Android 模拟器命令行选项 -tcpdump
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试直接在设备的命令行上运行 tcpdump。然后,您可以指定任意过滤器和选项,如 tcpdump 的手册页中所示。
然后,例如:
完成后:
确保您的模拟器实例有足够的 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:
When you're done:
Make sure your emulator instance has enough sdcard space for the capture.