MAC Address Lookup

Decode a MAC address — vendor OUI, unicast/multicast and local/universal.

Free MAC address lookup that decodes the OUI vendor prefix and the IEEE control bits of any EUI-48 MAC address, showing unicast vs multicast and universally vs locally administered. Analysed entirely in your browser with no lookup request — nothing is sent anywhere. It runs free in your browser on Gera Tools, with nothing uploaded.

Last updated Source: Gera Tools

Is the MAC address sent anywhere for the lookup?

No. The address is analysed entirely in your browser and no network request is made, so the MAC is never transmitted. Vendor names come from a small built-in list, not a live query.

A MAC address (Media Access Control address) is the 48-bit hardware identifier burned into every network interface — your laptop’s Wi-Fi card, a phone, a router, a virtual machine. This lookup tool decodes any EUI-48 MAC address, telling you the manufacturer (when known), whether the frame is unicast or multicast, and whether the address is a real factory OUI or a randomised privacy address. It is useful for network admins identifying devices on a LAN, troubleshooting DHCP leases, or just sanity-checking why a phone shows an “unknown” vendor.

How it works

The address is normalised by stripping every non-hex character and upper-casing it, so colon (3C:5A:B4:00:11:22), dash, dot and plain 12-digit formats all work. The result must be exactly 12 hex digits (48 bits) split into six octets.

  • OUI — the first 3 octets form the Organisationally Unique Identifier. This is matched against a built-in vendor list; an OUI not in the list is reported as such rather than guessed.
  • I/G bit — bit 0 (least-significant) of the first octet. 0 = unicast, 1 = multicast (group address).
  • U/L bit — bit 1 of the first octet. 0 = universally administered (a real vendor OUI), 1 = locally administered (randomised or virtual).

Example

Take 3C:5A:B4:00:11:22. The first octet 3C is 0011 1100 in binary — bit 0 is 0 (unicast) and bit 1 is 0 (universally administered). The OUI 3C5AB4 maps to Google in the built-in list. So the result is: unicast, real vendor, Google.

By contrast 02:1A:2B:3C:4D:5E starts with 02 (0000 0010) — bit 1 is set, so it is locally administered: a randomised privacy MAC with no real manufacturer.

First octet bitName0 means1 means
bit 0I/GUnicastMulticast
bit 1U/LUniversal (real OUI)Locally administered

Everything is computed in your browser — no lookup request is made, so the address is never sent anywhere. For a manufacturer not in the local list, consult the official IEEE OUI registry.