0

查看 Windows Server 2008 中的“网络连接”,我有一个名为“公司”的连接。

如何确定此 VPN 当前是否已连接以及它分配了哪些内部 IP(*)?

(*) 使用内部 IP 我指的是本地计算机之一,因此我可以在“BindIPEndPointDelegate”中使用此 IP

4

1 回答 1

1

这可能会帮助您:

        foreach (var item in System.Net.NetworkInformation.NetworkInterface.GetAllNetworkInterfaces())
        {
            Console.Write(item.Name + " - " + item.OperationalStatus.HasFlag(System.Net.NetworkInformation.OperationalStatus.Up) + " : ");
            foreach (var item2 in item.GetIPProperties().UnicastAddresses)
            {
                if (!item2.Address.IsIPv6LinkLocal)
                    Console.Write(item2.Address.ToString());
            }
            Console.WriteLine();
        }
于 2012-05-16T20:29:48.003 回答