gpt4 book ai didi

networking - 具有超过 1 个 IP 地址的机器上的套接字通信

转载 作者:行者123 更新时间:2023-12-03 11:52:38 25 4
gpt4 key购买 nike

我有一项服务可以监听 TCP\IP 端口号 7000 上的传入连接。此外,我的机器有超过 1 个 NIC 卡和超过 1 个 IP 地址。(换句话说,我有 2 个 LAN,LAN 和 LAN2 和2 Ips)。

现在我已经配置了我的客户端应用程序(在另一台只有 1 个 IP 的机器上)以建立与我的服务器的连接,并且我将端口号指定为 7000 和它必须尝试连接的 IP 作为服务器 LAN 的 IP1。

但是我注意到客户端无法建立连接,但是当我禁用 LAN2 时,我注意到客户端能够与服务器建立连接。

有什么问题?

最佳答案

当你绑定(bind)端口时,你必须指定 ip 或者你可以使用 INADDR_ANY适用于所有接口(interface)

IE。

memset(&myname, 0, sizeof(myname));
myname.sin_family = AF_INET;
myname.sin_port = 7000;
myname.sin_addr.s_addr = INADDR_ANY; /* all interfaces */
rc = bind(s, (struct sockaddr *) &myname, sizeof(myname));

来自 MSDN

If an application does not care what local address is assigned, specify the constant value INADDR_ANY for an IPv4 local address or the constant value in6addr_any for an IPv6 local address in the sa_data member of the name parameter. This allows the underlying service provider to use any appropriate network address, potentially simplifying application programming in the presence of multihomed hosts (that is, hosts that have more than one network interface and address).

关于networking - 具有超过 1 个 IP 地址的机器上的套接字通信,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1879124/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com