MAC Vendor (OUI)
Paste a MAC address in any format and get the manufacturer registered for its OUI (local IEEE database), plus an analysis of the U/L bit (locally administered or random?) and the I/G bit (unicast vs multicast).
The manufacturer is looked up in a local IEEE OUI database that ships with the page; nothing is sent to any server.
Enter a MAC to identify the manufacturer. How the first octet bits are read
The first octet of the MAC carries two flags in its two least significant bits:
- I/G bit (bit 0, the least significant): if it is
1the frame is multicast; if0it is unicast. - U/L bit (bit 1): if it is
1the address is locally administered (not assigned by the IEEE) — typical of privacy random MACs; if0it is universal (a real vendor OUI).
Quick rule: if the 2nd hex digit of the first octet is
2, 6, A or E, the U/L bit
is set (locally administered / possibly random).
Local IEEE OUI database · everything runs in your browser · no sign-up · nothing leaves your browser.
How it works
The tool identifies the manufacturer of a device from the OUI of its MAC address: the first 6 hexadecimal digits, which the IEEE registry assigns to each company. It accepts the MAC in any format (3C:5A:B4:01:23:45, 3c5a.b401.2345 or just 3C5AB4), normalizes it and looks the prefix up in an IEEE database that is downloaded together with the page.
Besides the vendor, it locally analyzes the two flag bits of the first octet defined in IEEE 802: the U/L bit (bit 1), which set to 1 marks a locally administered address, typical of the privacy MAC randomization in Android, iOS and Windows, and the I/G bit (bit 0), which distinguishes unicast from multicast. Quick rule: if the second hex digit is 2, 6, A or E, the MAC is locally administered and the vendor cannot be identified.
Example: what is that unknown device on my network?
- Copy the MAC your router shows, for example
B8:27:EB:12:34:56, and paste it into the field. - The OUI
B8:27:EBis registered with the IEEE to the Raspberry Pi Foundation: the mystery device is a Raspberry Pi. - The bits confirm it is a real MAC: first octet
0xB8→ U/L = 0 (universal) and I/G = 0 (unicast). - If the MAC were
DA:1B:44:...instead, the second digitAwould reveal a randomized address: the vendor cannot be known.