如何在 Linux 上从特定接口发送 UDP 数据包?

发布于 2024-10-10 06:40:38 字数 92 浏览 2 评论 0原文

如何使用 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 技术交流群。

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

发布评论

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

评论(3

百思不得你姐 2024-10-17 06:40:38

使用绑定。您无法通过没有 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.

成熟的代价 2024-10-17 06:40:38

您可以使用 SO_BINDTODEVICE 套接字选项,但这需要 root 权限。

或者,您可以设置 IP_PKTINFO 选项,并使用 < code>sendmsg 用于发送,将in_pktinfoipi_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 use sendmsg for sending, setting the in_pktinfo's ipi_ifindex to the index of your interface.

荆棘i 2024-10-17 06:40:38

您需要使用套接字选项 IP_MULTICAST_IF。

请参阅此处:Multicast-HOWTO-6.html

You need to use socket option IP_MULTICAST_IF.

See here: Multicast-HOWTO-6.html

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