MAC Address Lookup

Find the manufacturer or vendor of any network device by its MAC address (OUI lookup).

What is a MAC Address?

A MAC address (Media Access Control address) is a unique hardware identifier assigned to every network interface controller (NIC) in a device. It operates at the data link layer (Layer 2) of the OSI model and is used to identify devices on a local network segment.

MAC addresses are 48 bits long and are typically written as six groups of two hexadecimal digits separated by colons or hyphens:

  • Colon notation: AA:BB:CC:DD:EE:FF
  • Hyphen notation: AA-BB-CC-DD-EE-FF
  • Dot notation: AABB.CCDD.EEFF (common on Cisco devices)
  • Plain: AABBCCDDEEFF

The first three octets (e.g., AA:BB:CC) form the OUI (Organizationally Unique Identifier), which is registered with the IEEE and identifies the manufacturer. The last three octets are assigned by the manufacturer to each device, ensuring global uniqueness.

How to Find Your MAC Address

Windows

  1. Open Command Prompt (press Win+R, type cmd, press Enter)
  2. Type ipconfig /all and press Enter
  3. Look for "Physical Address" under your network adapter
  4. Alternatively, go to Settings > Network & Internet > Properties

macOS

  1. Click the Apple menu and select System Settings
  2. Go to Network and select your active connection
  3. Click Details or Advanced
  4. The MAC address is shown under Hardware tab
  5. Or open Terminal and type ifconfig en0 | grep ether

Linux

  1. Open a terminal
  2. Type ip link show or ifconfig
  3. Look for the link/ether or HWaddr line

iPhone / iPad

  1. Go to Settings > General > About
  2. Look for "Wi-Fi Address" - that is your MAC address
  3. Note: iOS 14+ uses a private (randomized) MAC address per network by default

Android

  1. Go to Settings > About Phone > Status
  2. Look for "Wi-Fi MAC address"
  3. Note: Android 10+ uses randomized MAC addresses per network by default

Frequently Asked Questions

What is a MAC address?

A MAC (Media Access Control) address is a unique 48-bit hardware identifier assigned to every network interface card. It is used to identify devices on a local network. The first three octets identify the manufacturer (OUI), and the last three are unique to each device.

What is an OUI?

An OUI (Organizationally Unique Identifier) is the first 24 bits (3 octets) of a MAC address. It is assigned by the IEEE to hardware manufacturers and uniquely identifies who made the network device. Our lookup tool uses the OUI to determine the manufacturer.

Can a MAC address be changed?

Yes. While the hardware MAC is burned into the network interface, most operating systems allow overriding it with a software-defined MAC (MAC spoofing). Modern smartphones also use randomized MAC addresses by default for Wi-Fi privacy, generating a different address for each network.

What is MAC address randomization?

MAC address randomization is a privacy feature in modern devices (iOS 14+, Android 10+, Windows 10+) that generates a random MAC address when connecting to Wi-Fi networks. This prevents tracking across locations using your device's real MAC address.