MAC Address Lookup: Find Your Device's Manufacturer

A complete guide to MAC addresses, OUI vendors, and identifying device manufacturers from hardware addresses.

Networking2026-04-13⏱ 9 min read

What Is a MAC Address?

A MAC (Media Access Control) address is a unique identifier permanently assigned to a network interface controller (NIC) by its manufacturer. Every device that connects to a network — your laptop, smartphone, smart TV, router, and even IoT devices like smart bulbs — has at least one MAC address.

MAC addresses are 48-bit numbers typically represented as six groups of two hexadecimal digits, separated by colons, hyphens, or periods. For example: 00:1A:2B:3C:4D:5E or 00-1A-2B-3C-4D-5E or 001A.2B3C.4D5E. Despite the different formatting, all three represent the same address.

The MAC address operates at Layer 2 of the OSI model (the Data Link layer), making it fundamental to how devices communicate on local networks. When your computer sends data to another device on the same Wi-Fi network, it uses MAC addresses to identify the source and destination at the hardware level.

The RiseTop MAC Address Lookup tool lets you instantly identify the manufacturer of any device from its MAC address.

Understanding MAC Address Structure

Every MAC address follows a standardized structure defined by the IEEE (Institute of Electrical and Electronics Engineers):

MAC Address: 00:1A:2B:3C:4D:5E

First 3 octets (OUI): 00:1A:2B - Identifies the manufacturer
Last 3 octets (NIC):   3C:4D:5E - Unique identifier for the device

Binary breakdown:
01100000.00011010.00101011.00111100.01001101.01011110
|---------------------------------| |-------------------|
        Organizationally              Network Interface
        Unique Identifier              Controller Specific
            (OUI)                        (NIC Specific)

The OUI (Organizationally Unique Identifier)

The first three octets (first 6 hex characters) of a MAC address form the OUI. This portion is assigned by the IEEE to hardware manufacturers. When you perform a MAC address lookup, you are essentially querying a database of OUI assignments to find out which company made the device.

Major manufacturers and their well-known OUI prefixes include:

The NIC-Specific Portion

The last three octets are assigned by the manufacturer and are supposed to be unique for each device they produce. In theory, this means no two network interfaces in the world should have the same MAC address. In practice, with billions of devices produced, occasional collisions do happen, but they are extremely rare and only problematic on the same local network.

Special Bit Meanings

The first octet of a MAC address carries special significance beyond the OUI:

How MAC Address Lookup Works

MAC address lookup tools work by querying a database that maps OUI prefixes to manufacturer names. The IEEE maintains the official registry of OUI assignments, which is publicly available and updated regularly.

The lookup process is simple:

  1. Extract the OUI from the MAC address (first 6 hex characters)
  2. Query the database using this OUI as the key
  3. Return the result — the manufacturer name, address, and sometimes additional details like the type of device

The RiseTop MAC Address Lookup uses an up-to-date IEEE OUI database to provide instant, accurate manufacturer identification for any MAC address you enter.

Practical Uses for MAC Address Lookup

Network Troubleshooting

When managing a network, seeing unfamiliar devices connected to your router is common. By looking up their MAC addresses, you can quickly identify what each device is — whether it is your roommate's phone, a smart home device, or something that should not be there. Most router admin panels show connected devices with their MAC addresses, making this a practical troubleshooting step.

Security Auditing

Network administrators use MAC address lookups to audit devices on corporate networks. If a MAC address resolves to an unknown manufacturer or an unexpected device type, it could indicate an unauthorized device or a security breach. Many enterprise network management tools automatically perform MAC lookups and flag unfamiliar devices.

IoT Device Identification

With the explosion of smart home devices, identifying what is on your network has become more important than ever. A MAC address lookup can tell you that the mystery device is a Philips Hue bulb, an Amazon Echo, or a Samsung smart TV, helping you manage and secure your smart home ecosystem.

Debugging and Development

Developers working on network applications, embedded systems, or IoT firmware often need to verify MAC address assignments and identify test devices. A quick MAC lookup confirms that a device is using the expected network interface hardware.

How to Find Your MAC Address

Finding your MAC address depends on your operating system:

Windows

# Open Command Prompt or PowerShell, then run:
ipconfig /all

# Look for "Physical Address" under your active adapter
# It will appear as: 00-1A-2B-3C-4D-5E

macOS

# Option 1: System Settings > Network > Wi-Fi/Ethernet > Details
# Option 2: Terminal command
networksetup -getmacaddress Wi-Fi

Linux

# Modern Linux (ip command)
ip link show

# Legacy Linux (ifconfig)
ifconfig -a | grep ether

# Output: ether 00:1a:2b:3c:4d:5e

Android

Go to Settings > About Phone > Wi-Fi MAC Address. Note that Android 10+ randomizes MAC addresses by default for privacy, so the address you see may differ from the actual hardware address.

iOS

Go to Settings > General > About > Wi-Fi Address. Like Android, iOS uses private MAC addresses by default since iOS 14.

MAC Address Privacy and Randomization

In recent years, operating systems have introduced MAC address randomization to protect user privacy. When your device scans for Wi-Fi networks, it uses a random, temporary MAC address instead of its real hardware address. This prevents companies, advertisers, and malicious actors from tracking your movements by recording your MAC address at different locations.

Here is how different systems handle it:

This means that if you look up a MAC address from a device scan and it does not match any known manufacturer, the address may be randomized rather than spoofed. Locally administered addresses (where the second bit of the first octet is set to 1) can be identified by their format.

MAC Address Spoofing

MAC spoofing is the practice of changing a device MAC address in software. While the term sounds malicious, there are legitimate reasons to spoof a MAC address:

To spoof a MAC address on Linux:

# Bring the interface down
sudo ip link set dev eth0 down

# Change the MAC address
sudo ip link set dev eth0 address 00:11:22:33:44:55

# Bring the interface back up
sudo ip link set dev eth0 up

It is worth noting that MAC spoofing does not change the burned-in address (BIA) stored in the NIC firmware. The spoofed address only persists until it is changed again or the system is rebooted (unless configured otherwise).

MAC Addresses in Networking Protocols

MAC addresses play a critical role in several networking protocols:

The Future: MAC Addresses in an IPv6 World

With IPv6 adoption growing, the relationship between MAC addresses and IP addresses has evolved. IPv6 originally used EUI-64 addresses, which embedded the MAC address directly into the IPv6 address. This raised significant privacy concerns, as a device IPv6 address would reveal its MAC address and potentially its location.

Modern operating systems now use privacy extensions (RFC 4941) that generate random IPv6 interface identifiers instead of using the MAC address. This approach is similar to MAC randomization but operates at the IP layer.

Despite these changes, MAC addresses remain fundamental to network communication and will continue to be relevant for the foreseeable future. Understanding how to look up and interpret MAC addresses is an essential skill for network administrators, security professionals, and tech-savvy users alike.

Frequently Asked Questions

What is a MAC address?

A MAC (Media Access Control) address is a unique identifier assigned to a network interface controller (NIC) by the manufacturer. It is a 48-bit number typically represented as six groups of two hexadecimal digits separated by colons or hyphens, such as 00:1A:2B:3C:4D:5E.

Can I find a device manufacturer from its MAC address?

Yes. The first three octets (first 6 characters) of a MAC address form the Organizationally Unique Identifier (OUI), which is assigned by IEEE to specific manufacturers. By looking up the OUI in a database, you can identify the company that made the network interface.

Can MAC addresses be changed or spoofed?

Yes. MAC addresses can be changed in software (known as MAC spoofing). Operating systems allow users to set a custom MAC address on their network interfaces. This is sometimes used for privacy or testing purposes, but it also means MAC-based identification is not completely reliable.

What is the difference between MAC address and IP address?

A MAC address identifies a specific hardware device on a local network and is assigned by the manufacturer (rarely changes). An IP address identifies a device on a network and is assigned dynamically by DHCP or configured statically. MAC addresses operate at Layer 2 (Data Link), IP addresses at Layer 3 (Network).

How do I find my MAC address?

On Windows, run 'ipconfig /all' in Command Prompt. On macOS, go to System Settings, then Network, then Details. On Linux, run 'ip link' or 'ifconfig'. On mobile devices, check Wi-Fi settings under Advanced or About Phone. The format varies but is always 6 pairs of hex characters.

Related Articles