Questions tagged «ip-address»

Internet协议地址(IP地址)是分配给使用Internet协议进行通信的计算机网络中每个设备的数字标签。这是一个通用标签,涵盖了IPv4(如172.168.100.1)和较新的IPv6(如2012:da8:0:1234:7:577:8:2)。如果您明确表示其中任何一种,请使用IPv4或IPv6标签。

3
如何获得网络接口及其正确的IPv4地址?
我需要知道如何使用其IPv4地址获取所有网络接口。或者只是无线和以太网。 要获取所有网络接口的详细信息,请使用以下命令: foreach (NetworkInterface ni in NetworkInterface.GetAllNetworkInterfaces()) { if(ni.NetworkInterfaceType == NetworkInterfaceType.Wireless80211 || ni.NetworkInterfaceType == NetworkInterfaceType.Ethernet) { Console.WriteLine(ni.Name); } } 并获取计算机的所有托管IPv4地址: IPAddress [] IPS = Dns.GetHostAddresses(Dns.GetHostName()); foreach (IPAddress ip in IPS) { if (ip.AddressFamily == AddressFamily.InterNetwork) { Console.WriteLine("IP address: " + ip); } } 但是,如何获取网络接口及其正确的ipv4地址?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.