阻止到给定主机或 IP 的传出 TCP 连接?

发布于 2024-10-04 18:36:41 字数 142 浏览 6 评论 0原文

是否可以拦截到 Windows 中给定主机或 IP 的传出 TCP 连接,并在 TCP 级别(即 connect(...) 层)阻止该连接?或者首先阻止连接到特定IP?

或者我是否需要编写一个数据包过滤器来拦截到某个地址的流量?

Is it possible to intercept an outgoing TCP connection to a given host or IP in Windows and block that connection on the TCP level, i.e. at the connect(...) layer? Or prevent connection to a specific IP in the first place?

Or do I need to write a packet filter to intercept traffic to a certain address?

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

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

发布评论

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

评论(2

奢欲 2024-10-11 18:36:46

在Linux上?也许配置 iptables 以断开连接。

On linux? Configure iptables to drop the connection, perhaps.

℉絮湮 2024-10-11 18:36:45

最好只使用系统的防火墙 API。在 Windows 上:
http://msdn.microsoft.com/en- us/library/aa366449(v=VS.85).aspx

否则,您将编写驱动程序之类的...考虑到这些功能已内置到操作系统中,这完全是麻烦。

It's probably best to simply use the system's firewall API. On Windows:
http://msdn.microsoft.com/en-us/library/aa366449(v=VS.85).aspx

Otherwise you are going to be writing drivers and such... complete hassle considering the functionality is built into the OS these days.

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