A MAC address (Media Access Control address) is a low-level hardware identifier used to identify a network interface on a local network. It operates at the data link layer (OSI Layer 2) and is essential for delivering frames between devices on the same physical or wireless segment. On an everyday device the MAC address is associated with its network interface controller or NIC; when that interface transmits or receives frames the MAC is used to direct traffic to the correct hardware endpoint. See the concept of a network for the broader context.
Format and technical characteristics
Most MAC addresses are 48 bits long and are usually shown as twelve hexadecimal digits grouped in pairs, for example 00:11:22:33:44:55, 00-11-22-33-44-55, or 0011.2233.4455. The address space contains 2^48 (281,474,976,710,656) possible values. The first 24 bits commonly identify the manufacturer through an Organizationally Unique Identifier (OUI) assigned by the standards body; the remaining 24 bits are under the maker's control. Certain bits in the first byte carry special meaning: one bit distinguishes unicast from multicast address usage and another indicates whether the address is universally or locally administered.
History and assignment
The addressing scheme used for MACs originated with the development of early local area networks such as Ethernet at research centers like Xerox PARC. Management of OUIs and other registration functions are handled by the relevant standards organizations (commonly the IEEE). When a manufacturer produces a network interface—whether for wired Ethernet or wireless Wi‑Fi—it embeds a MAC into the hardware or firmware; this is often called the burned-in address (BIA).
Uses, examples, and interaction with IP
On a local network, devices use MAC addresses to send frames to specific destinations. Switches build forwarding tables keyed by MAC values to know which port leads to which device. Protocols like ARP (Address Resolution Protocol) map IP addresses to MAC addresses for IPv4; IPv6 uses Neighbor Discovery and sometimes forms interface identifiers from a MAC via EUI-64 transformations. Typical user scenarios include connecting a laptop's network interface (NIC) to a router or associating a smartphone's wireless MAC when joining an access point.
- Common formats: 00:11:22:33:44:55, 00-11-22-33-44-55, 0011.2233.4455
- Scope: local link only — routers forward IP packets, not MAC addresses, across networks
- Types: unicast (single recipient), multicast (group), broadcast (all on the link)
Privacy, security, and notable distinctions
MAC addresses are stable identifiers by design, but modern operating systems often support randomizing or spoofing MACs for privacy when probing or joining wireless networks to reduce tracking. Administrators sometimes use MAC filtering to control access, but because MACs can be changed in software this is not a strong security measure on its own. It is important to distinguish a MAC from an IP address: the MAC identifies hardware on a single link, while the IP address identifies a host or interface at the network layer and can be routed across the Internet. For historical background on the technologies that use MAC addresses, see the original Ethernet work and related materials such as Xerox PARC and standards summaries at general networking references network sources.
Practical tips: you can usually view a device's MAC through its OS settings or command-line tools; be aware that some networks and devices intentionally modify visible MACs for privacy or policy reasons. For wireless devices, MAC handling and privacy features may influence how and when a device appears to access points or tracking systems, including public or corporate Wi‑Fi deployments. Manufacturers and administrators register identifiers through the OUI process, and further technical details are recorded by standards organizations—consult vendor documentation or official registries for authoritative records.
Further reading: technical standards and tutorials about Ethernet and IEEE registration explain the allocation mechanisms and the finer points of MAC bit definitions; see general introductions and device guides for step-by-step examples of locating and interpreting a MAC on desktops, phones, and embedded hardware like routers and switches, including how network devices such as a network card present their MAC when joining a LAN.