C#中如何查看谁使用了某个端口?

发布于 2025-01-01 11:15:28 字数 147 浏览 0 评论 0原文

如何确定哪个进程/哪个可执行文件正在使用我的本地主机的 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 技术交流群。

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

发布评论

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

评论(1

淡淡的优雅 2025-01-08 11:15:28

您可以通过管道传输 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 row

Checking 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.

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