MAC Address Lookup & OUI Analyzer

Instantly identify the vendor, brand, and hardware manufacturer of any network device using its physical MAC address. Search our comprehensive Organizationally Unique Identifier (OUI) database.

Try example MAC addresses:

Understanding the Structure of a MAC Address

A Media Access Control (MAC) address consists of 48 bits, represented as 12 hexadecimal characters separated by colons or hyphens (e.g., 00:1A:2B:3C:4D:5E). These 48 bits are divided into two equal parts:

  • Organizationally Unique Identifier (OUI): The first 24 bits (first 6 characters) represent the manufacturer ID. OUIs are formally assigned and registered by the IEEE. Looking up this prefix reveals the brand of the network card (e.g., Intel, Apple, Cisco).
  • Network Interface Controller (NIC) Specific: The remaining 24 bits (last 6 characters) are assigned by the manufacturer to uniquely identify that specific physical chip. No two chips from the same manufacturer share this suffix.

MAC Address Randomization and Locally Administered Addresses (LAA)

To protect user privacy and prevent tracking across public Wi-Fi access points, modern operating systems like iOS, Android, and Windows implement **MAC Randomization**. When randomization is active, your device does not broadcast its real burned-in MAC address (BIA). Instead, it generates a randomized locally administered MAC address.

You can verify if a MAC address is randomized by checking the first octet. If the second hexadecimal character of the address is **2, 6, A, or E** (representing bit values 10 in binary for the local administration bit), the address was generated dynamically in software. Randomized MACs will show up as "Unknown Vendor" because they do not have a registered OUI in the IEEE registry.

How to Find Your MAC Address on Different Systems

Follow these instructions to locate the physical hardware address of your device:

Operating SystemNavigation Command / PathKey Identifier
Windows 10 / 11cmd → ipconfig /all (or getmac)Physical Address
macOSTerminal → ifconfig (or System Settings → Network → Details)ether (or MAC Address)
LinuxTerminal → ip link showlink/ether
AndroidSettings → About Phone → Status InformationWi-Fi MAC Address
iOS (iPhone/iPad)Settings → General → AboutWi-Fi Address

Why Do Network Engineers Use MAC Lookups?

MAC address analysis is a core part of network security, device auditing, and troubleshooting:

  • Intruder Detection: When auditing your router's connected client list, running MAC lookups helps identify unrecognized devices (e.g. distinguishing an IoT smart bulb from an intruder's laptop).
  • Static DHCP Reservations: Binding a local IP address to a device's MAC address ensures it always receives the same IP, which is crucial for port forwarding.
  • Hardware Spoofing Verification: Verification of MAC structures helps identify legacy devices or spoofed hardware trying to bypass network restrictions.
Deep Diagnostics & Internal Authority Links

How Does the MAC Address Lookup Work?

A MAC (Media Access Control) address is a unique 48-bit physical hardware identifier. The first 24 bits (6 hexadecimal digits) form the Organizationally Unique Identifier (OUI), which is issued by the IEEE. Our tool extracts this OUI and references an updated manufacturer database to identify the brand.

Unlike IP addresses which are logical and assigned dynamically by routers, MAC addresses are physically burned into the network interface card (NIC) at the factory and remain constant.

What Can You Learn From a MAC Address?

Hardware Vendor

Identifies the exact manufacturer of the chip or device — e.g. Apple, Intel, Samsung, Espressif.

Device Category

Helps classify unidentified devices on your local WiFi client list (e.g. smart home plug vs. laptop).

Local Administration

Reveals if a device is using randomized MAC addresses (common on modern iOS/Android devices for privacy).

Network Troubleshooting

Essential for configuring static DHCP leases, MAC address filtering, or router authentication.

MAC Randomization & Modern Privacy

To prevent tracking across public networks, modern operating systems (iOS, Android, Windows) dynamically generate a randomized, private MAC address for each SSID connection.

If your lookup returns 'Unknown Vendor', the device is likely using a randomized MAC address. You can disable private addressing in the device's WiFi settings to expose its true hardware MAC.

Frequently Asked Questions

What is a MAC address?

A MAC (Media Access Control) address is a unique 12-character physical hardware address assigned to a network interface controller (NIC) by its manufacturer. It is used as a network address for most IEEE 802 network technologies, including Ethernet and Wi-Fi.

How do I find my device's MAC address?

On Windows, open Command Prompt and type 'getmac' or 'ipconfig /all'. On macOS/Linux, open Terminal and run 'ifconfig' or 'ip link'. On iOS/Android, go to Settings -> About Phone/Tablet -> Status or Hardware Information.

What is an OUI?

An OUI (Organizationally Unique Identifier) is the first 24 bits (three octets) of a MAC address. OUIs are purchased from the IEEE by companies and manufacturers to uniquely identify their network-capable products.

Why does the tool show 'Unknown Vendor' for some devices?

This usually occurs if the MAC address is randomized (a privacy feature on modern smartphones and laptops) or if it belongs to a brand new manufacturer OUI that has not yet been synced with the public IEEE database registers.

What is MAC Address Randomization?

MAC address randomization is a privacy feature built into modern operating systems (like iOS 14+, Android 10+, and Windows 10/11). When scanning for or connecting to Wi-Fi networks, the device generates a temporary, randomized MAC address to prevent third parties from tracking your physical location.

How can I tell if a MAC address is randomized?

You can identify a randomized MAC address by looking at the second character of the first octet. If the character is 2, 6, A, or E (e.g., x2:xx:xx:xx:xx:xx), it is a locally administered address, which confirms randomization is active.

Can two devices have the same MAC address?

In theory, no. Every hardware MAC address is meant to be globally unique. However, MAC addresses can be changed or spoofed in software, meaning two devices on different networks could use the same MAC address. On the same local subnet, duplicate MAC addresses will cause severe IP conflict drops.

What is the difference between a MAC address and an IP address?

A MAC address is a physical address burned into the hardware at the factory and operates at Layer 2 (Data Link) of the OSI model. An IP address is a logical address assigned dynamically by routers (DHCP) at Layer 3 (Network) to specify where a device is located on a network.

Why do routers use MAC addresses for MAC Filtering?

Routers use MAC address filtering as a security layer to allow or block specific hardware from associating with the wireless network. Because MAC addresses are hardware-level, they are harder to bypass than IP addresses, though determined attackers can still spoof permitted MACs.

What is the format of a MAC address?

A MAC address is typically written in one of three formats: colon-hexadecimal notation (e.g., 00:1A:2B:3C:4D:5E), hyphen-hexadecimal notation (e.g., 00-1A-2B-3C-4D-5E), or dot-hexadecimal notation (e.g., 001.a2b.3c4.d5e).