MAC Address OUI Resolver

Network Client-side mac oui vendor network ethernet wifi

This tool runs entirely client-side, in your browser: your data is never sent anywhere.

What it does

Every network interface has a MAC address such as 3C:5A:B4:12:34:56. The first 3 bytes (6 hex digits) are the OUI (Organizationally Unique Identifier), assigned by the IEEE to the manufacturer. This tool resolves that prefix to the vendor name, entirely client-side using a bundled lookup table — no data ever leaves your browser.

Try it

Enter a MAC address above and click "Resolve vendor".

How it works

  1. The input is cleaned of separators (:, -, ., spaces) and upper-cased.
  2. The first 6 hex characters (3 bytes) are extracted — this is the OUI.
  3. The two low-order bits of the first byte are also inspected to report whether the address is:
  1. The OUI is looked up in a local table (data/oui.json) bundled with this tool. If your device isn't recognized, it's likely a newer or less common assignment not in the offline snapshot.

The offline dataset can be refreshed from the official IEEE registry by running npm run fetch-oui in the project (requires internet access), which regenerates data/oui.json from the public IEEE MA-L listing.

Notes