Read MAC Address from network adapter in .NET - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T12:40:53Zhttp://stackoverflow.com/feeds/question/218284http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/218284/read-mac-address-from-network-adapter-in-net4Read MAC Address from network adapter in .NETJeff2008-10-20T12:40:17Z2008-10-20T13:33:36Z
<p>I'd like to be able to read the mac address from the first active network adapter using VB.net or C# (using .NET 3.5 SP1) for a winform application</p>
http://stackoverflow.com/questions/218284/read-mac-address-from-network-adapter-in-net/218305#2183050Answer by Lou Franco for Read MAC Address from network adapter in .NETLou Franco2008-10-20T12:45:23Z2008-10-20T12:45:23Z<p>You need to DllImport GetAdaptersInfo -- here's some C# code</p>
<p><a href="http://www.codeguru.com/cpp/i-n/network/networkinformation/comments.php/c5451/?thread=60212" rel="nofollow">http://www.codeguru.com/cpp/i-n/network/networkinformation/comments.php/c5451/?thread=60212</a></p>
http://stackoverflow.com/questions/218284/read-mac-address-from-network-adapter-in-net/218314#2183142Answer by Ilya Kochetov for Read MAC Address from network adapter in .NETIlya Kochetov2008-10-20T12:50:14Z2008-10-20T12:50:14Z<p>from <a href="http://www.dotnetjunkies.com/WebLog/jkirwan/archive/2004/02/10/6943.aspx" rel="nofollow">http://www.dotnetjunkies.com/WebLog/jkirwan/archive/2004/02/10/6943.aspx</a></p>
<pre><code> Dim mc As System.Management.ManagementClass
Dim mo As ManagementObject
mc = New ManagementClass("Win32_NetworkAdapterConfiguration")
Dim moc As ManagementObjectCollection = mc.GetInstances()
For Each mo In moc
If mo.Item("IPEnabled") = True Then
ListBox1.Items.Add("MAC address " & mo.Item("MacAddress").ToString())
End If
Next
</code></pre>
<p>I am sure you'll have no trouble porting this code to C# if you need to</p>
http://stackoverflow.com/questions/218284/read-mac-address-from-network-adapter-in-net/218338#2183388Answer by Stu Mackellar for Read MAC Address from network adapter in .NETStu Mackellar2008-10-20T13:00:36Z2008-10-20T13:19:19Z<p>Since .Net 2.0 there's been a NetworkInterface class in the System.Net.NetworkInformation namespace that will give you this information. Try this:</p>
<pre><code> foreach (NetworkInterface nic in NetworkInterface.GetAllNetworkInterfaces())
{
if (nic.OperationalStatus == Up)
{
Console.WriteLine(nic.GetPhysicalAddress().ToString());
break;
}
}
</code></pre>
http://stackoverflow.com/questions/218284/read-mac-address-from-network-adapter-in-net/218443#2184431Answer by plinth for Read MAC Address from network adapter in .NETplinth2008-10-20T13:33:36Z2008-10-20T13:33:36Z<p>Here's a class to do that:</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
namespace MacAddress
{
class MacAddress
{
byte[] _address;
public MacAddress(byte[] b)
{
if (b == null)
throw new ArgumentNullException("b");
if (b.Length != 8)
throw new ArgumentOutOfRangeException("b");
_address = new byte[b.Length];
Array.Copy(b, _address, b.Length);
}
public byte[] Address { get { return _address; } }
public override string ToString()
{
return Address[0].ToString("X2", System.Globalization.CultureInfo.InvariantCulture) + ":" +
Address[1].ToString("X2", System.Globalization.CultureInfo.InvariantCulture) + ":" +
Address[2].ToString("X2", System.Globalization.CultureInfo.InvariantCulture) + ":" +
Address[3].ToString("X2", System.Globalization.CultureInfo.InvariantCulture) + ":" +
Address[4].ToString("X2", System.Globalization.CultureInfo.InvariantCulture) + ":" +
Address[5].ToString("X2", System.Globalization.CultureInfo.InvariantCulture);
}
public static List<MacAddress> GetMacAddresses()
{
int size = 0;
// this chunk of code teases out the first adapter info
int r = GetAdaptersInfo(null, ref size);
if ((r != IPConfigConst.ERROR_SUCCESS) && (r != IPConfigConst.ERROR_BUFFER_OVERFLOW))
{
return null;
}
Byte[] buffer = new Byte[size];
r = GetAdaptersInfo(buffer, ref size);
if (r != IPConfigConst.ERROR_SUCCESS)
{
return null;
}
AdapterInfo Adapter = new AdapterInfo();
ByteArray_To_IPAdapterInfo(ref Adapter, buffer, Marshal.SizeOf(Adapter));
List<MacAddress> addresses = new List<MacAddress>();
do
{
addresses.Add(new MacAddress(Adapter.Address));
IntPtr p = Adapter.NextPointer;
if (p != IntPtr.Zero)
{
IntPtr_To_IPAdapterInfo(ref Adapter, p, Marshal.SizeOf(Adapter));
}
else
{
break;
}
} while (true);
return addresses;
}
// glue definitions into windows
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
private struct IPAddrString
{
public IntPtr NextPointer;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 4 * 4)]
public String IPAddressString;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 4 * 4)]
public String IPMaskString;
public int Context;
}
private class IPConfigConst
{
public const int MAX_ADAPTER_DESCRIPTION_LENGTH = 128;
public const int MAX_ADAPTER_NAME_LENGTH = 256;
public const int MAX_ADAPTER_ADDRESS_LENGTH = 8;
public const int ERROR_BUFFER_OVERFLOW = 111;
public const int ERROR_SUCCESS = 0;
}
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
private struct AdapterInfo
{
public IntPtr NextPointer;
public int ComboIndex;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = IPConfigConst.MAX_ADAPTER_NAME_LENGTH + 4)]
public string AdapterName;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = IPConfigConst.MAX_ADAPTER_DESCRIPTION_LENGTH + 4)]
public string Description;
public int AddressLength;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = IPConfigConst.MAX_ADAPTER_ADDRESS_LENGTH)]
public Byte[] Address;
public int Index;
public int Type;
public int DhcpEnabled;
public IntPtr CurrentIPAddress;
public IPAddrString IPAddressList;
public IPAddrString GatewayList;
public IPAddrString DhcpServer;
public Boolean HaveWins;
public IPAddrString PrimaryWinsServer;
public IPAddrString SecondaryWinsServer;
public int LeaseObtained;
public int LeaseExpires;
}
[DllImport("Iphlpapi.dll", CharSet = CharSet.Auto)]
private static extern int GetAdaptersInfo(Byte[] PAdapterInfoBuffer, ref int size);
[DllImport("Kernel32.dll", EntryPoint = "CopyMemory")]
private static extern void ByteArray_To_IPAdapterInfo(ref AdapterInfo dst, Byte[] src, int size);
[DllImport("Kernel32.dll", EntryPoint = "CopyMemory")]
private static extern void IntPtr_To_IPAdapterInfo(ref AdapterInfo dst, IntPtr src, int size);
}
}
</code></pre>
<p>And here's some test code:</p>
<pre><code> List<MacAddress> addresses = MacAddress.GetMacAddresses();
foreach (MacAddress address in addresses)
{
Console.WriteLine(address);
}
</code></pre>
<p>I'm sure the ToString method could be better, but it does the job.</p>