从输出接口以外的另一个接口选择 IP 源地址

发布于 2024-11-03 08:57:20 字数 727 浏览 0 评论 0原文

我想知道一种方法,可以选择使用 UDP 套接字发送的数据包的 IP 源地址。我需要使用环回接口lo:0的IP发送,但是套接字自动用输出接口的IP填充源IP。

例如,考虑通过 VLAN 连接的 2 台计算机,其接口地址分别为 10.10.1.1 和 10.10.1.2。机器环回地址为100.100.100.1和100.100.100.2。

现在,发生的情况是:

     Machine 1                                       Machine 2

           --->  src: 10.10.1.1/dst: 100.100.100.2

                 dst: 100.100.100.2/src: 10.10.10.2 <----

我需要以下内容:

     Machine 1                                       Machine 2

           --->  src: 100.100.100.1/dst: 100.100.100.2

                 dst: 100.100.100.1/src: 100.100.100.2 <----

有人知道使用套接字时设置传出源 IP 的任何解决方案吗?

我正在使用 C 语言进行编程,并且使用的是 Linux。

提前致谢。

I would like to know a way by which I can select the IP source address of a packet sent using an UDP socket. I need to send using the IP of the loopback interface lo:0, but the socket automatically fills the source IP with the IP of the output interface.

For example, consider 2 machines which are connected through a vlan with respective interface addressess 10.10.1.1 and 10.10.1.2. The machines loopback addresses are 100.100.100.1 and 100.100.100.2.

Right now, what happens is:

     Machine 1                                       Machine 2

           --->  src: 10.10.1.1/dst: 100.100.100.2

                 dst: 100.100.100.2/src: 10.10.10.2 <----

I need the following:

     Machine 1                                       Machine 2

           --->  src: 100.100.100.1/dst: 100.100.100.2

                 dst: 100.100.100.1/src: 100.100.100.2 <----

Does anybody know any solutions to set the outgoing source IP when using the socket ?

I'm programming in C and I'm using Linux.

Thanks in advance.

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

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

发布评论

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

评论(2

葬シ愛 2024-11-10 08:57:20

使用bind()指定套接字的本地地址。

请注意,根据操作系统配置(例如路由规则),这可能会影响套接字所连接的接口。

Use bind() to specify the local address of the socket.

Be warned that, depending on operating system configuration such as routing rules, this may affect the interface the socket is attached to.

長街聽風 2024-11-10 08:57:20

如果所有其他方法都失败,您始终可以以原始模式打开套接字,然后您可以在 IP 和 UDP 标头中准确指定您想要的内容,包括源地址。

原始套接字教程

If all else fails, you could always open the socket in raw mode and then you can specify exactly what you want in the IP and UDP Headers, including the source address.

Raw Sockets Tutorial

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