gpt4 book ai didi

c# - 无法使用单声道连接到在 ubuntu 上运行的自己的 IPv6 TCP 服务器应用程序

转载 作者:可可西里 更新时间:2023-11-01 02:53:53 24 4
gpt4 key购买 nike

我的测试基础设施由 3 台机器组成:1 台运行 hyperv 的 Windows 10 物理机和 2 台安装了 ubuntu 操作系统的虚拟机。所有机器之间都有完整的网络连接(它们相互 ping)。我写了 2 个简单的 C# 程序:TCP 客户端和 TCP 服务器(下面我附上了重现问题的最少代码)。当我在 Windows 机器上运行客户端并在其中一台 ubuntu 机器上运行服务器时,一切都运行良好。但是,当我尝试在其中一台 ubuntu 机器上运行客户端并在另一台 ubuntu 机器上运行服务器时,我在客户端收到错误消息:

TCPClientTest.exe Information: 0 : System.Net.Sockets.SocketException (0x80004005): Invalid arguments at System.Net.Sockets.TcpClient.Connect (System.Net.IPAddress[] ipAddresses, System.Int32 port) [0x000e9] in <59be416de143456b88b9988284f43350>:0 at System.Net.Sockets.TcpClient.Connect (System.String hostname, System.Int32 port) [0x00007] in <59be416de143456b88b9988284f43350>:0 at System.Net.Sockets.TcpClient..ctor (System.String hostname, System.Int32 port) [0x00006] in <59be416de143456b88b9988284f43350>:0 at TCPClientTest.Program.Main (System.String[] args) [0x00002] in :0 DateTime=2016-11-09T21:25:42.4641950Z

TCP 客户端:

TcpClient client = new TcpClient("fe80::3", 15000);
NetworkStream stream = client.GetStream();
int number = stream.ReadByte();
stream.Close();
client.Close();

TCP 服务器:

TcpListener server = new TcpListener(IPAddress.IPv6Any, 15000);
server.Start();

TcpClient client = server.AcceptTcpClient();
NetworkStream stream = client.GetStream();
stream.WriteByte(199);
stream.Close();
client.Close();

Ubuntu 版本:16.04 LTS

单声道版本:4.6 服务版本 0.1 (4.6.1.5)

可能是什么问题?

最佳答案

我发现了问题。 IPv6 链接本地地址与一个称为范围 ID 的数字相关联,该数字指定我们希望用于连接的网络接口(interface)。看起来在 Linux 系统上我们必须明确提供此信息(即使使用 ping6 我们也需要这样做)但在 Windows 上没有这样的要求并且根据这篇文章 https://technet.microsoft.com/pl-pl/ms739166它正在使用 Neighbor Discovery 并尝试为我们获取正确的接口(interface)。

例如:在 Windows 上 ping fe80::3 将正常工作,但在 Linux 上我们需要执行 ping6 -I eth0 fe80::3ping6 fe80::3%2

TCP 客户端必须稍微修改以遵守范围 ID 并指定它将用于正常工作的网络接口(interface):

IPAddress ipAddress = null;

foreach (NetworkInterface networkInterface in NetworkInterface.GetAllNetworkInterfaces())
{
IPInterfaceProperties ipIntProperties = networkInterface.GetIPProperties();
foreach (UnicastIPAddressInformation addr in ipIntProperties.UnicastAddresses)
{
String addressWithoutScopeId = addr.Address.ToString().Split('%')[0];
if (addressWithoutScopeId.Equals("fe80::2"))
{
ipAddress = addr.Address;
break;
}

}
if (ipAddress != null)
break;
}

var endPoint = new IPEndPoint(ipAddress, 0);
TcpClient client = new TcpClient(endPoint);
client.Connect(IPAddress.Parse("fe80::3"), 15000);
NetworkStream stream = client.GetStream();
int number = stream.ReadByte();
stream.Close();
client.Close();

关于c# - 无法使用单声道连接到在 ubuntu 上运行的自己的 IPv6 TCP 服务器应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40516654/

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