C/C++ Windows 流量拦截器

发布于 2024-07-15 04:35:30 字数 128 浏览 11 评论 0原文

我想为我的机器后面的网络开发一个带宽分配器。

现在,我已经阅读了有关 NDIS 的内容,但我不确定既不是源自我的计算机也不是发往我的计算机的网络流量是否会进入我的 TCP/IP 堆栈,以便我可以通过 NDIS 在窗户机器。

I want to develop a bandwidth allocator to a network which will be behind my machine.

Now, I've read about NDIS but I am not sure whether the network traffic that is neither originating from my machine nor is destined for my machine will enter my TCP/IP stack, so that I can block/unblock packets via NDIS on a windows machine.

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

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

发布评论

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

评论(2

滴情不沾 2024-07-22 04:35:30

NDIS(内核)驱动程序位于 Windows 网络堆栈中,因此只能拦截由该堆栈处理的数据包。

您无法过滤未发送到您计算机的数据包。

(当计算机充当路由器时,数据包被发送到计算机,计算机将数据包转发到实际接收者,如果这是问题的话)

NDIS (kernel) drivers live in the Windows network stack, and so can only intercept packets which are handled by this stack.

You cannot filter packets which are not send to your computer.

(When the computer acts as a router, the packets are send to the computer and the computer forwards the packets to the actual recepient, if that was the question)

街角迷惘 2024-07-22 04:35:30

在正常操作模式下,NIC 驱动程序/固件将丢弃不相关的流量,如上所述。 然而,这是一个软件问题,因此可以通过在设备驱动程序和/或固件中添加适当的逻辑来更改此行为。 例如,这就是嗅探器的工作原理。

In normal operation mode the irrelevant traffic will be dropped by the NIC driver/firmware, like pointed above. However, this is a SW issue so this behavior can be changed by adding an appropriate logic into the device driver and/or firmware. This is how sniffers operate, for example.

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