Every network device — your laptop, phone, router, smart TV, or that unknown gadget on your Wi-Fi — carries a MAC address. Hidden inside that address is the name of the company that made the network hardware. This guide explains how a MAC address is structured, how a vendor lookup decodes the manufacturer, and how to use that information to identify devices on your network.

What is a MAC address?

A MAC (Media Access Control) address is a unique identifier assigned to a network interface — the Wi-Fi or Ethernet chip inside a device. Unlike an IP address, which changes depending on the network you join, the MAC address is burned into the hardware at manufacture and generally stays with the device for life. It operates at Layer 2 of the network stack and is used to deliver frames on a local network.

Anatomy of a MAC address

A MAC address is 48 bits, usually written as six pairs of hexadecimal digits, for example 3C:5A:B4:1F:2E:9D. It splits into two halves:

  • The first 24 bits (first three octets) — the OUI, which identifies the manufacturer.
  • The last 24 bits — a unique serial the manufacturer assigns to that specific interface.

So in 3C:5A:B4:1F:2E:9D, the 3C:5A:B4 part tells you who made the hardware, and 1F:2E:9D distinguishes it from every other device that vendor produced.

The OUI: how vendor lookup works

OUI stands for Organizationally Unique Identifier. The IEEE assigns these 24-bit prefixes to companies and publishes the full registry publicly. A MAC vendor lookup simply takes the first three octets of an address and matches them against that registry to return the manufacturer's name — for example, prefixes owned by Apple, Cisco, Ubiquiti, TP-Link, Samsung, or Raspberry Pi.

Because the registry is public and standardized, any tool can resolve a manufacturer instantly and offline, without contacting the device.

How to look up a device manufacturer

Paste a full MAC address (or just the first three octets) into a lookup tool and it returns the registered vendor. Our free MAC Vendor Lookup resolves the manufacturer from the OUI instantly. This is the fastest way to answer "who made this device?" when you see an unfamiliar entry in your router's client list.

How to find a device's MAC address

  • Windows: run ipconfig /all and read "Physical Address".
  • macOS: System Settings → Network → details, or ifconfig en0 | grep ether.
  • Linux: ip link or ifconfig.
  • iOS / Android: Settings → About / Wi-Fi details.
  • Any device on your network: open your router's admin page and view the connected-clients or DHCP list — each entry shows a MAC address.

Practical use cases

  • Identify unknown devices: spot a mystery client on your Wi-Fi and learn whether it is a phone, a printer, or an IoT gadget.
  • Network inventory: map which hardware brands are on your network for auditing or support.
  • Troubleshooting: match a device in DHCP logs to its physical manufacturer.
  • Security checks: flag a device whose vendor doesn't match anything you own.

MAC randomization and privacy

Modern phones and laptops now use MAC randomization — they present a random, locally-administered address to Wi-Fi networks to prevent tracking. You can recognize a randomized address because the second-least-significant bit of the first octet is set (the address is "locally administered"). A vendor lookup on a randomized MAC will not return a real manufacturer, which is expected behavior, not an error. On the hardware itself, the true burned-in address is still the manufacturer's.

FAQ

Can a MAC address tell me exactly which device it is?

It reveals the manufacturer of the network chip, not the model or owner. Combined with the device's IP, hostname and behavior, that is usually enough to identify it.

Why does my phone's MAC not match a real vendor?

Because it is using MAC randomization for privacy. The random address is intentionally not tied to a manufacturer.

Is a MAC address the same as an IP address?

No. A MAC address is a permanent hardware identifier used on the local network; an IP address is assigned by the network and can change. They work together to deliver traffic.

Do I need internet access to resolve a vendor?

No. The OUI-to-vendor mapping is a public registry, so the manufacturer can be resolved from the address alone.