How to Find Your MAC Address
Every device with a network connection has a MAC address. Here's how to find yours on every major platform — using both command-line and GUI methods.
Windows
Command Line (fastest)
Open Command Prompt or PowerShell and run:
ipconfig /all
Look for "Physical Address" under your active network adapter. It'll look like 00-1A-2B-3C-4D-5E.
For a cleaner output, try:
getmac /v
This shows each adapter's MAC address in a table.
GUI Method
- Open Settings → Network & Internet
- Click Wi-Fi or Ethernet (whichever you're using)
- Click Hardware properties
- Find "Physical address (MAC)"
macOS
Command Line
Open Terminal and run:
ifconfig en0 | grep ether
This shows the MAC address for your Wi-Fi adapter (en0). For Ethernet, use en1 or check all interfaces with just ifconfig.
GUI Method
- Click the Apple menu → System Settings
- Go to Network → Wi-Fi (or your active connection)
- Click Details or Advanced
- Find the "Wi-Fi Address" or "Hardware (MAC) Address"
Linux
Modern (iproute2)
ip link show
Look for link/ether next to your interface name (e.g., eth0, wlan0, enp3s0).
Legacy (net-tools)
ifconfig
The MAC address appears as ether or HWaddr.
Quick one-liner
cat /sys/class/net/*/address
This dumps the MAC address for every network interface on the system.
iOS (iPhone / iPad)
- Open Settings → General → About
- Scroll to "Wi-Fi Address" — that's your MAC address
Android
- Open Settings → About Phone (or About Device)
- Tap Status or Status Information
- Find "Wi-Fi MAC Address"
On newer Android versions (10+), you may need to go to Settings → Network & Internet → Wi-Fi → tap the connected network → Advanced to find the MAC. Android also randomizes MAC addresses per network by default since Android 10.
Router / DHCP Logs
If you're a network admin and need MAC addresses for all devices on your network, check your router's DHCP client table. Most routers show this in the admin panel under "Connected Devices" or "DHCP Leases." You can then use our Bulk Lookup tool to identify all the vendors at once.
What to Do With Your MAC Address
Once you've found your MAC address, you can:
- Look it up to identify the manufacturer
- Use it for MAC address filtering on your router
- Register it for network access (corporate/campus Wi-Fi)
- Troubleshoot network connectivity issues