阻止到给定主机或 IP 的传出 TCP 连接?
是否可以拦截到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在Linux上?也许配置 iptables 以断开连接。
On linux? Configure iptables to drop the connection, perhaps.
最好只使用系统的防火墙 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.