如何在 Linux 上从特定接口发送 UDP 数据包?
如何使用 C 从 Linux 上的特定接口发送 UDP 数据包?我应该使用绑定吗?是否可以从没有 IP 地址的接口发送 UDP?
谢谢。
How do I send UDP packet from a specific interface on Linux using C? Should I use bind? Is it possible to send UDP from the interface not having IP address?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用绑定。您无法通过没有 IP 地址的接口发送 UDP 数据包,因为 UDP 使用 Internet 协议,而 Internet 协议需要 IP 地址。
Use bind. You cannot send UDP packets via an interface that does not have an IP address, because UDP uses the Internet Protocol and the Internet Protocol requires an IP address.
您可以使用
SO_BINDTODEVICE
套接字选项,但这需要 root 权限。或者,您可以设置
IP_PKTINFO
选项,并使用 < code>sendmsg 用于发送,将in_pktinfo
的ipi_ifindex
设置为您的界面索引。You can bind a socket to a specific interface by using the
SO_BINDTODEVICE
socket option, however this requires root privileges.Alternately, you can set the
IP_PKTINFO
option, and usesendmsg
for sending, setting thein_pktinfo
'sipi_ifindex
to the index of your interface.您需要使用套接字选项 IP_MULTICAST_IF。
请参阅此处:Multicast-HOWTO-6.html
You need to use socket option IP_MULTICAST_IF.
See here: Multicast-HOWTO-6.html