我可以使用 Winsock 发送非 IP 数据包吗?
我正在尝试创建一个小型 PPPoE 访问集中器来了解 PPPoE 的内部工作原理。 这要求我发送非 IP 数据包,我需要能够设置 ETHER_TYPE 并最终设置以太网帧标头中的目标 mac 字段,但据我所知,原始 WinSock 套接字使我能够提供自己的IP 标头,但不是以太网标头。
这是真的吗?如果是这样,有什么办法可以规避这个问题吗?
我很了解 WinPcap,并且只会将其用作最后的手段。
I'm trying to create a small PPPoE Access Concentrator to learn the inner workings of PPPoE.
This requires me to send non-IP packets, I need to be able to set the ETHER_TYPE and eventualy the destination mac fields in the ethernet frame header, but as far as I can tell, raw WinSock sockets give me the ability to supply my own IP header, but not the ethernet header.
Is this true? And if so, is there any way of circumventing this?
I am well aware of WinPcap, and will use it ONLY as a last resort.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信你是对的。 Winsock 将允许原始 IP 套接字,但不允许您进入第 3 层并发送非 IP 数据包。为此,我相信您需要选择 WinPcap/TDI 选项。更多信息。
I believe that you are correct. Winsock will allow a raw IP socket but does not allow you to get beneath layer 3 and send non-IP packets. For this I believe you would need to pursue the WinPcap / TDI option . More information.