ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

C# 获取网卡信息

2020-10-27 10:01:27  阅读:227  来源: 互联网

标签:Console string C# IP adapter 网卡 获取 WriteLine


获取网卡信息

        static void Main(string[] args)
        {
            ShowNetworkInterfaces();
            Console.Read();
        }

        public static void ShowNetworkInterfaces()
        {
            IPGlobalProperties computerProperties = IPGlobalProperties.GetIPGlobalProperties();
            NetworkInterface[] nics = NetworkInterface.GetAllNetworkInterfaces();
            Console.WriteLine("Interface information for {0}.{1}     ",
                    computerProperties.HostName, computerProperties.DomainName);
            if (nics == null || nics.Length < 1)
            {
                Console.WriteLine("  No network interfaces found.");
                return;
            }

            Console.WriteLine("  Number of interfaces .................... : {0}", nics.Length);
            foreach (NetworkInterface adapter in nics)
            {
                #region " 网卡类型 "
                string fCardType = "未知网卡";
                string fRegistryKey = "SYSTEM\\CurrentControlSet\\Control\\Network\\{4D36E972-E325-11CE-BFC1-08002BE10318}\\" + adapter.Id + "\\Connection";
                RegistryKey rk = Registry.LocalMachine.OpenSubKey(fRegistryKey, false);
                if (rk != null)
                {
                    // 区分 PnpInstanceID   
                    // 如果前面有 PCI 就是本机的真实网卡  
                    // MediaSubType 为 01 则是常见网卡,02为无线网卡。  
                    string fPnpInstanceID = rk.GetValue("PnpInstanceID", "").ToString();
                    int fMediaSubType = Convert.ToInt32(rk.GetValue("MediaSubType", 0));
                    if (fPnpInstanceID.Length > 3 &&
                        fPnpInstanceID.Substring(0, 3) == "PCI")
                        fCardType = "物理网卡";
                    else if (fMediaSubType == 1)
                        fCardType = "虚拟网卡";
                    else if (fMediaSubType == 2)
                        fCardType = "无线网卡";
                }
                #endregion
                #region IP 版本 
                string versions = "";
                // Create a display string for the supported IP versions.
                if (adapter.Supports(NetworkInterfaceComponent.IPv4))
                {
                    versions = "IPv4";
                }
                if (adapter.Supports(NetworkInterfaceComponent.IPv6))
                {
                    if (versions.Length > 0)
                    {
                        versions += " ";
                    }
                    versions += "IPv6";
                }
                #endregion IP 版本

                IPInterfaceProperties properties = adapter.GetIPProperties();
                Console.WriteLine();
                Console.WriteLine(fCardType + " : " + adapter.Description);
                Console.WriteLine(String.Empty.PadLeft(adapter.Description.Length, '='));
                Console.WriteLine("  Id ...................................... : {0}", adapter.Id); // 获取网络适配器的标识符  
                Console.WriteLine("  Name .................................... : {0}", adapter.Name); // 获取网络适配器的名称  
                Console.WriteLine("  Description ............................. : {0}", adapter.Description); // 获取接口的描述  
                Console.WriteLine("  Interface type .......................... : {0}", adapter.NetworkInterfaceType); // 获取接口类型  
                Console.WriteLine("  IP version .............................. : {0}", versions);
                Console.WriteLine("  IP Properties ........................... : {0}", string.Join(" ; ", adapter.GetIPProperties().AnycastAddresses.Select(o => o.Address.ToString()).ToArray()));
                Console.WriteLine("  IP Properties ........................... : {0}", string.Join(" ; ", adapter.GetIPProperties().DhcpServerAddresses.Select(o => o.ToString()).ToArray()));
                Console.WriteLine("  IP Properties ........................... : {0}", string.Join(" ; ", adapter.GetIPProperties().DnsAddresses.Select(o => o.ToString()).ToArray()));
                Console.WriteLine("  IP Properties ........................... : {0}", adapter.GetIPProperties().DnsSuffix);
                Console.WriteLine("  IP Properties ........................... : {0}", string.Join(" ; ", adapter.GetIPProperties().GatewayAddresses.Select(o => o.Address.ToString()).ToArray()));
                Console.WriteLine("  IP Properties ........................... : {0}", adapter.GetIPProperties().IsDnsEnabled);
                Console.WriteLine("  IP Properties ........................... : {0}", adapter.GetIPProperties().IsDynamicDnsEnabled);
                Console.WriteLine("  IP Properties ........................... : {0}", string.Join(" ; ", adapter.GetIPProperties().MulticastAddresses.Select(o => o.Address.ToString()).ToArray()));

                // The adapters for IP address.
                IPInterfaceProperties fIPInterfaceProperties = adapter.GetIPProperties();
                UnicastIPAddressInformationCollection UnicastIPAddressInformationCollection = fIPInterfaceProperties.UnicastAddresses;
                foreach (UnicastIPAddressInformation UnicastIPAddressInformation in UnicastIPAddressInformationCollection)
                {
                    if (UnicastIPAddressInformation.Address.AddressFamily == AddressFamily.InterNetwork)
                        Console.WriteLine("  Ip Address .............................. : {0}", UnicastIPAddressInformation.Address); // Ip 地址  
                }
                Console.WriteLine("  Physical Address ........................ : {0}", adapter.GetPhysicalAddress().ToString()); // MAC 地址  
                Console.WriteLine("  Operational status ...................... : {0}", adapter.OperationalStatus); // 获取网络连接的当前操作状态  
                Console.WriteLine("  DNS suffix .............................. : {0}", properties.DnsSuffix);
                Console.WriteLine("  DNS enabled ............................. : {0}", properties.IsDnsEnabled);
                Console.WriteLine("  Dynamically configured DNS .............. : {0}", properties.IsDynamicDnsEnabled);
                Console.WriteLine("  Receive Only ............................ : {0}", adapter.IsReceiveOnly);
                Console.WriteLine("  Multicast ............................... : {0}", adapter.SupportsMulticast);
                Console.WriteLine("  Speed ................................... : {0}", adapter.Speed); // 网络接口的速度  

                //// The following information is not useful for loopback adapters.
                //if (adapter.NetworkInterfaceType == NetworkInterfaceType.Loopback)
                //{
                //    continue;
                //}
                if (adapter.Supports(NetworkInterfaceComponent.IPv4))
                {
                    IPv4InterfaceProperties ipv4 = properties.GetIPv4Properties();
                    if (ipv4 != null)
                    {
                        Console.WriteLine("  MTU ..................................... : {0}", ipv4.Mtu);
                        Console.WriteLine("  MTU Index ............................... : {0}", ipv4.Index);
                        Console.WriteLine("  MTU Automatic Private Addressing Active . : {0}", ipv4.IsAutomaticPrivateAddressingActive);
                        Console.WriteLine("  MTU Automatic Private Addressing Enabled. : {0}", ipv4.IsAutomaticPrivateAddressingEnabled);
                        Console.WriteLine("  MTU Dhcp Enabled ........................ : {0}", ipv4.IsDhcpEnabled);
                        Console.WriteLine("  MTU Forwarding Enabled .................. : {0}", ipv4.IsForwardingEnabled);
                        if (ipv4.UsesWins)
                        {
                            IPAddressCollection winsServers = properties.WinsServersAddresses;
                            if (winsServers.Count > 0)
                            {
                                Console.WriteLine("  WINS Servers ............................ : {0}", winsServers);
                                Console.WriteLine("  WINS Servers Read Only .................. : {0}", winsServers.IsReadOnly);
                            }
                        }
                    }
                }

                Console.WriteLine();
            }
        }
View Code

 

 

标签:Console,string,C#,IP,adapter,网卡,获取,WriteLine
来源: https://www.cnblogs.com/GoCircle/p/12517592.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有