C#中如何查看谁使用了某个端口?
如何确定哪个进程/哪个可执行文件正在使用我的本地主机的 80 端口?我想知道,例如它是否是 Apache Server 等。
我们可以从 ipProperties.GetActiveTcpListeners() 获取一些信息吗?我只看到了本地端点、远程端点和状态。
How to determine what process/what executable is using, say, port 80 of my localhost? I would like to know, for example if it is Apache Server, etc.
Can we get some information from ipProperties.GetActiveTcpListeners() ? I've only seen local endpoint, remote endpoint and state.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过管道传输 netstat -o 的输出并解析它,但这可能是一个充满头痛和边缘情况的糟糕想法。
在幕后,
netstat -o
使用 GetTcpTable2 来自IPHelper库的API方法,它返回一个MIB_TCPTABLE2结构,每个端口由一个MIB_TCPROW2 结构。您必须使用 P/Invoke 从 C# 访问此内容,为表和行构建互操作结构检查 PInvoke.Net,我发现类似的 API 调用已映射到 C# - GetExtendedTcpTable - 列出应用程序的可用 TCP 端口。您可以使用它作为构建互操作结构和声明的基础。
You can pipe the output of
netstat -o
and parse it, but that's probably a terrible idea full of headaches and edge cases.Behind the scenes,
netstat -o
uses the GetTcpTable2 API method from the IPHelper library, which returns a MIB_TCPTABLE2 structure, with each port represented by a MIB_TCPROW2 structure. You'll have to use P/Invoke to access this from C#, building interop structs for the table and the rowChecking PInvoke.Net, I see that a similar API call has already been mapped to C# - GetExtendedTcpTable - which lists available TCP ports for an app. You can use that as a base for building your interop structs and declarations.