使用带有绑定接口的 ACE 框架

发布于 2024-12-22 16:07:12 字数 411 浏览 2 评论 0原文

我的 Linux 服务器带有一个物理接口 eth0 和 3 个虚拟接口 eth1、eth2、eth3。服务器有4个IP地址,需要使用很多IP端口(超过100k)。服务器有 bond0 接口,有 4 个地址,例如 .1.2.3.4。 我的应用程序基于 ACE v5.5。要打开本地 1023 端口,我使用带有 ctor 参数 ACE_Addr = ACE_INET_Addr("0.0.0.0:1023")ACE_SOCK_Dgram 类。有用。如何在另一个本地IP上打开1023

谢谢。

I have Linux server with one physical interface eth0 and 3 virtuals eth1, eth2, eth3. Server has 4 IP addresses, it is necessary to use a lot IP ports (more than 100k). Server has bond0 interface with 4 addresses, for example .1, .2, .3 and .4.
My application based on ACE v5.5. To open an local 1023 port I use ACE_SOCK_Dgram class with ctor argument ACE_Addr = ACE_INET_Addr("0.0.0.0:1023"). It works. How to open 1023 on another local IP?

Thanks.

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

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

发布评论

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

评论(1

莫相离 2024-12-29 16:07:12

我找到了解决方案。使用 ACE_INET_Addr("xxx1:1023")ACE_INET_Addr("xxx2:1023")ACE_INET_Addr("xxx2:1024") 等在 ACE_SOCK_Dgram ctor 参数中为您的应用程序提供使用不同的 IP 地址和不同的端口。您可以根据需要管理端口和地址。

I found the solution. Using ACE_INET_Addr("x.x.x.1:1023"), ACE_INET_Addr("x.x.x.2:1023"), ACE_INET_Addr("x.x.x.2:1024"), etc in ACE_SOCK_Dgram ctor param provide your application to use different IP addresses and different ports. You can manage port and address as you like.

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