How To Get the MAC Address for an Ethernet Adapter
This article was previously published under Q118623 On This PageSUMMARY
This article demonstrates how to get the Media Access Control (MAC) address
for an ethernet adapter programmatically by using NetBIOS, if your card is
bound to NetBIOS.
MORE INFORMATION
To get the Media Access Control (MAC) address for an ethernet adapter
programmatically, use the Netbios() NCBASTAT command and provide a "*" as
the name in the NCB.ncb_CallName field. This is demonstrated in the sample
code below.
For computers with multiple network adapters you need to enumerate the LANA numbers and perform the NCBASTAT command on each. Even when you have a single network adapter, it is a good idea to enumerate valid LANA numbers first and perform the NCBASTAT on one of the valid LANA numbers. It is considered bad programming to hardcode the LANA number to 0. In addition, other hardware and software may be assigned their own MAC addresses. For example, a modem can have a MAC address. Also, a RAS client or server can install "dummy" network adapters that correspond to a dialup or serial connection. Normally, these MAC addresses are randomly generated. If an adapter status is called on a LANA that corresponds to one of these adapters when no connection is present, Netbios returns error 0x34 (NRC_ENVNOTDEF) even if a reset was previously performed. With the NetBEUI and IPX transports, the same information can be obtained at a command prompt by using: net config workstationThe ID given is the MAC address. The following code enumerates all LANA numbers, performs a reset (NCBREST), and an adapter status (NCBASTAT). Sample CodeAPPLIES TO
| Article Translations
| ||||||||||||||||||||||||||||||||||||||||||||||||||

Back to the top
