windows – 通过cmd捕获数据包

前端之家收集整理的这篇文章主要介绍了windows – 通过cmd捕获数据包前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道是否有一个工具,我可以用来编写数据包捕获(命令行)脚本,而无需安装任何东西(最好不是pcap).这适用于 Windows机器;该工具将使用管理凭据运行.

我只想收集发送和发送的数据包的源/目标IP和端口对. Netstat不起作用,因为会话可以在几毫秒内打开和关闭,并且会被遗漏.

快速的谷歌搜索显示,我将不得不支付昂贵的工具或坚持使用基于GUI的工具.

Windows 7及更高版本内置了此功能.
http://blogs.msdn.com/b/canberrapfe/archive/2012/03/31/capture-a-network-trace-without-installing-anything-works-for-shutdown-and-restart-too.aspx

The short version:

  1. Open an elevated command prompt and run: netsh trace start persistent=yes capture=yes tracefile=c:\temp\nettrace-boot.etl (make sure you have a \temp directory or choose another location).

  2. Reproduce the issue or do a reboot if you are tracing a slow boot scenario.

  3. Open an elevated command prompt and run: netsh trace stop

Your trace will be stored in c:\temp\nettrace-boot.etl** or where ever you saved it. You can view the trace on another machine using netmon.

原文链接:https://www.f2er.com/windows/370454.html

猜你在找的Windows相关文章