我正在尝试获取远程机器的 IP。但是我的代码无法远程收集 IPv6。代码在本地运行时运行良好。以下是我的示例代码
System.Net.IPHostEntry hostEntryComputer;
try
{
hostEntryComputer = System.Net.Dns.GetHostEntry(computerName);
foreach (System.Net.IPAddress addr in hostEntryComputer.AddressList)
{
string temp = addr.ToString();
Console.WriteLine("IP: " + temp);
}
}
catch(Exception ex)
{
Console.WriteLine(ex.Message);
}
任何帮助,将不胜感激。