asp.net core 获取 MacAddress 地址方法示例
网络编程 2021-07-04 22:41www.168986.cn编程入门
这篇文章主要介绍了asp. core获取MacAddress地址方法,长沙网络推广觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随长沙网络推广过来看看吧
本文告诉大家如何在 dot core 获取 Mac 地址
因为在 dotcore 是没有直接和硬件相关的,所以无法通过 WMI 的方法获取当前设备的 Mac 地址
在 dot core 可以使用狼蚁网站SEO优化的代码拿到本机所有的网卡地址,包括物理网卡和虚拟网卡
IPGlobalProperties puterProperties = IPGlobalProperties.GetIPGlobalProperties(); NetworkInterface[] nics = NetworkInterface.GetAllNetworkInterfaces(); Console.WriteLine("Interface information for {0}.{1} ", puterProperties.HostName, puterProperties.DomainName); if (nics == null || nics.Length < 1) { Console.WriteLine(" No work interfaces found."); return; } Console.WriteLine(" Number of interfaces .................... : {0}", nics.Length); foreach (NetworkInterface adapter in nics) { Console.WriteLine(); Console.WriteLine(adapter.Name + "," + adapter.Description); Console.WriteLine(String.Empty.PadLeft(adapter.Description.Length, '=')); Console.WriteLine(" Interface type .......................... : {0}", adapter.NetworkInterfaceType); Console.Write(" Physical address ........................ : "); PhysicalAddress address = adapter.GetPhysicalAddress(); byte[] bytes = address.GetAddressBytes(); for (int i = 0; i < bytes.Length; i++) { // Display the physical address in hexadecimal. Console.Write("{0}", bytes[i].ToString("X2")); // Insert a hyphen after each byte, unless we are at the end of the // address. if (i != bytes.Length - 1) { Console.Write("-"); } } Console.WriteLine(); }
运行代码,狼蚁网站SEO优化是控制台
Interface information for lindexi.github Number of interfaces .................... : 6 Hyper-V Virtual Ether Adapter #4 =================================== Interface type .......................... : Ether Physical address ........................ : 00-15-5D-96-39-03 Hyper-V Virtual Ether Adapter #3 =================================== Interface type .......................... : Ether Physical address ........................ : 1C-1B-0D-3C-47-91 Software Loopback Interface 1 ============================= Interface type .......................... : Loopback Physical address ........................ : Microsoft Teredo Tunneling Adapter ================================== Interface type .......................... : Tunnel Physical address ........................ : 00-00-00-00-00-00-00-E0 Hyper-V Virtual Ether Adapter ================================ Interface type .......................... : Ether Physical address ........................ : 5A-15-31-73-B0-9F Hyper-V Virtual Ether Adapter #2 =================================== Interface type .......................... : Ether Physical address ........................ : 5A-15-31-08-13-B1
可以看到里面有很多不需要使用的网卡,从 堆栈 网找到的方法获取当前有活跃的 ip 的网卡可以通过先判断是不是本地巡回网络等,然后判断有没有网络
foreach (NetworkInterface adapter in nics.Where(c => c.NetworkInterfaceType != NetworkInterfaceType.Loopback && c.OperationalStatus == OperationalStatus.Up))
获取当前的网卡有没 ip 有 ip 才是需要的
IPInterfaceProperties properties = adapter.GetIPProperties(); var unicastAddresses = properties.UnicastAddresses; foreach (var temp in unicastAddresses.Where(temp => temp.Address.AddressFamily == AddressFamily.InterNetwork)) { // 这个才是需要的网卡 }
简单输出网卡使用 adapter.GetPhysicalAddress().ToString() 输出,如果需要输出带连接的请使用 GetAddressBytes 然后自己输出
狼蚁网站SEO优化的代码是我抽出来的,可以直接使用
public static void GetActiveMacAddress(string separator = "-") { NetworkInterface[] nics = NetworkInterface.GetAllNetworkInterfaces(); //Debug.WriteLine("Interface information for {0}.{1} ", // puterProperties.HostName, puterProperties.DomainName); if (nics == null || nics.Length < 1) { Debug.WriteLine(" No work interfaces found."); return; } var macAddress = new List<string>(); //Debug.WriteLine(" Number of interfaces .................... : {0}", nics.Length); foreach (NetworkInterface adapter in nics.Where(c => c.NetworkInterfaceType != NetworkInterfaceType.Loopback && c.OperationalStatus == OperationalStatus.Up)) { //Debug.WriteLine(""); //Debug.WriteLine(adapter.Name + "," + adapter.Description); //Debug.WriteLine(string.Empty.PadLeft(adapter.Description.Length, '=')); //Debug.WriteLine(" Interface type .......................... : {0}", adapter.NetworkInterfaceType); //Debug.Write(" Physical address ........................ : "); //PhysicalAddress address = adapter.GetPhysicalAddress(); //byte[] bytes = address.GetAddressBytes(); //for (int i = 0; i < bytes.Length; i++) //{ // // Display the physical address in hexadecimal. // Debug.Write($"{bytes[i]:X2}"); // // Insert a hyphen after each byte, unless we are at the end of the // // address. // if (i != bytes.Length - 1) // { // Debug.Write("-"); // } /
编程语言
- 宿迁百度关键词排名指南:实现精准营销的关键
- 四川SEO优化怎么做网络推广
- 立昂技术备案老域名收购:如何为您的业务赋能
- 安徽百度关键词seo贵不贵,一般需要多少钱
- 吉林百度快照排名怎么做电话营销
- 多伦新手做SEO怎么做
- 甘肃优化关键词排名推广怎么做论坛营销
- 沙雅SEO网站推广:提升您的在线可见性
- 四川SEO优化如何提升销售额和销售量
- 聂荣网站排名优化:提升网站可见性的全方位指
- 涞水SEO:提升地方企业在线可见性的策略
- 辽宁百度seo排名怎样做网站排名
- 临湘哪有关键词排名优化:提升网站可见度的关
- 黑龙江百度网站优化有没有优惠
- 凉城优化关键词排名推广:提升您的网络可见性
- 萝北整站优化:提升您网站流量和排名的全面指