本文告诉大家如何在 dotnet core 获取 Mac 地址
因为在 dotnetcore 是没有直接和硬件相关的,所以无法通过 WMI 的方法获取当前设备的 Mac 地址
但是在 dotnet core 可以使用下面的代码拿到本机所有的网卡地址,包括物理网卡和虚拟网卡
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) { 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(); }
运行代码,下面是控制台
Interface information for lindexi.github Number of interfaces .................... : 6 Hyper-V Virtual Ethernet Adapter #4 =================================== Interface type .......................... : Ethernet Physical address ........................ : 00-15-5D-96-39-03 Hyper-V Virtual Ethernet Adapter #3 =================================== Interface type .......................... : Ethernet 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 Ethernet Adapter ================================ Interface type .......................... : Ethernet Physical address ........................ : 5A-15-31-73-B0-9F Hyper-V Virtual Ethernet Adapter #2 =================================== Interface type .......................... : Ethernet 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 然后自己输出
下面的代码是我抽出来的,可以直接使用
public static void GetActiveMacAddress(string separator = "-") { NetworkInterface[] nics = NetworkInterface.GetAllNetworkInterfaces(); //Debug.WriteLine("Interface information for {0}.{1} ", // computerProperties.HostName, computerProperties.DomainName); if (nics == null || nics.Length < 1) { Debug.WriteLine(" No network 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("-"); // } //} //Debug.WriteLine(""); //Debug.WriteLine(address.ToString()); IPInterfaceProperties properties = adapter.GetIPProperties(); var unicastAddresses = properties.UnicastAddresses; if (unicastAddresses.Any(temp => temp.Address.AddressFamily == AddressFamily.InterNetwork)) { var address = adapter.GetPhysicalAddress(); if (string.IsNullOrEmpty(separator)) { macAddress.Add(address.ToString()); } else { macAddress.Add(string.Join(separator, address.GetAddressBytes())); } } } }
上面的方法不仅是在 dotnet core 可以使用,在 dotnet framework 程序同样调用,但是在 dotnet framework 还可以通过 WMI 获取
在 dotnet framework 使用 WMI 获取 MAC 地址方法
var managementClass = new ManagementClass("Win32_NetworkAdapterConfiguration"); var managementObjectCollection = managementClass.GetInstances(); foreach (var managementObject in managementObjectCollection.OfType<ManagementObject>()) { using (managementObject) { if ((bool) managementObject["IPEnabled"]) { if (managementObject["MacAddress"] == null) { return string.Empty; } return managementObject["MacAddress"].ToString().ToUpper(); } } }
输出的格式是 5A:15:31:73:B0:9F 同时输出是一个网卡
NetworkInterface.GetPhysicalAddress Method (System.Net.NetworkInformation)
PhysicalAddress Class (System.Net.NetworkInformation)
c# - .NET Core 2.x how to get the current active local network IPv4 address? - Stack Overflow
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
- 群星1995《摇滚中国乐势力》首版引进版[WAV+CUE][983M]
- 陈思安《32首酒廊情调》2CD新雅(国际)影碟[WAV+CUE]
- 齐豫潘越云《回声》K2HD[正版原抓WAV+CUE]
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]