How to quickly find your laptop's Wi-Fi MAC address: detailed instructions for all operating systems

MAC address (or physical address) A Wi-Fi adapter is a unique identifier assigned to a network device during manufacturing. It consists of 12 characters (numbers and letters from A to F) and looks like this: 00:1A:2B:3C:4D:5E. Knowing this address may be necessary to configure the router (for example, when binding devices by MAC), diagnosing network problems or connecting to corporate networks with filtering by equipment.

Unlike an IP address, which can change, a MAC address remains constant (unless it's changed programmatically). On laptops, it's hardcoded into the network card—both integrated and external (USB adapter). In this article, we'll cover all the current methods for finding it on devices with Windows 10/11 And macOS, including command-line methods, a graphical interface, and specialized utilities. We'll also explore why the MAC address you're seeing sometimes isn't the one you expect, and how to fix it.

1. Wi-Fi MAC Address on Windows: 3 Proven Methods

On laptops running Windows There are at least three reliable methods for determining the MAC address of a wireless adapter. Choose any one based on your preferences—all of them produce the same result.

Method 1: Via Windows Settings (graphical interface)

This is the simplest method that does not require knowledge of commands or installation of additional software. Suitable for Windows 10 And Windows 11:

  1. Open the menu Start and go to Settings → Network & Internet.
  2. In the section Wi-Fi click on Managing known networks (V Windows 11Additional network settings).
  3. Select your current Wi-Fi network and click Properties.
  4. Scroll down to the block Properties - there will be a line Physical address (MAC).

If you have multiple network adapters (for example, built-in Wi-Fi and a USB dongle), make sure you're viewing the address of the correct device. The MAC address may be displayed in the properties list. Ethernet-port - it's different from Wi-Fi!

Method 2: Via Command Prompt (CMD)

This method is universal and works even if the Windows GUI is unresponsive. Use it if you need to quickly copy the MAC address for router configuration:

  1. Click Win + R, enter cmd and confirm Enter.
  2. Enter the command:
    ipconfig /all | findstr /i "physical"
  3. Find the block in the results Wireless LAN adapter - there will be a line Physical address.

If you have multiple Wi-Fi adapters (for example, a built-in and an external one), the command output will show multiple blocks. Use the adapter name as a guide—usually these are models from Intel, Qualcomm Atheros or Realtek.

Run the command prompt as administrator|Enter the command ipconfig /all|Find the "Wireless Network Adapter" block|Copy the "Physical Address" value-->

Method 3: Via Device Manager

This method is useful if you need to not only find out the MAC address, but also check the model of the Wi-Fi adapter (for example, to search for drivers):

  1. Click Win + X and select device Manager.
  2. Expand the section Network adapters.
  3. Find the device with the words Wireless, Wi-Fi or 802.11 in the title, right-click on it and select Properties.
  4. Go to the tab Additionally and select from the list Network address or Network Address.

In the field Meaning A blank line may be displayed—this is normal. In this case, the MAC address should be viewed in the tab General in the section Device status (sometimes it is duplicated there).

Why is there no Advanced tab in Device Manager?

If the tab is missing, it means the Wi-Fi adapter driver is not installed correctly or the generic Windows driver is being used. Try updating the driver through the laptop manufacturer's official website (e.g. Lenovo, HP, ASUS).

2. How to find the Wi-Fi MAC address on macOS (MacBook)

On laptops Apple MacBook (and other devices with macOS) The process is slightly different, but no less simple. There are two main ways - through system settings and through Terminal.

Method 1: Via System Preferences

The macOS interface is intuitive, so this method is suitable even for beginners:

  1. Click on the icon Apple () in the upper left corner and select System Preferences → Network.
  2. In the left menu, select Wi-Fi, then press Additionally.
  3. Go to the tab Equipment - there will be a line MAC address.

If you have multiple network interfaces (eg. en0 for Wi-Fi and en1 (for Ethernet), make sure you're looking at the address of the correct one. In macOS, it's designated as Airport or Wi-Fi.

Method 2: Via Terminal

For experienced users or process automation, the command in Terminal:

  1. Open Terminal (can be found via Spotlight on click Cmd + Space).
  2. Enter the command:
    networksetup -getmacaddress Wi-Fi
  3. The system will display a line like this Ethernet Address: 00:1a:2b:3c:4d:5e.

If the command doesn't work, try replacing Wi-Fi on en0 (the standard designation for the Wi-Fi interface in macOS). You can also use the universal command:

ifconfig en0 | grep ether

Via System Preferences|Via Terminal|I don't know, haven't tried it yet|I'm using a different method-->

3. Why might the MAC address be different from what I expected?

Sometimes users encounter a situation where the MAC address displayed in the settings doesn't match the one hardcoded into the adapter. This can occur for several reasons:

  • 🔄 MAC Address VirtualizationSome routers and public networks (such as those in hotels or airports) use wireless technology. MAC Randomization, in which the device temporarily changes its address to protect privacy. Windows 10/11 This feature is enabled by default for open networks.
  • 🔧 Software changeUsing utilities like Technitium MAC Address Changer or SMAC You can manually change the adapter's MAC address. It will revert to the original after a reboot if it's not saved in the registry.
  • 🖥️ Multiple network adaptersIf your laptop has an external Wi-Fi module installed (e.g. via USB), the system may display the MAC address of the external device instead of the built-in one.

To disable MAC address virtualization in Windows 10/11:

  1. Go to Settings → Network and Internet → Wi-Fi.
  2. Click Managing known networks and select your network.
  3. In the network properties, disable the option Random equipment.

4. How to find the Wi-Fi MAC address on Linux (Ubuntu, Mint, etc.)

Although the main audience of this article is users Windows And macOS, laptop owners with Linux may also need to know the MAC address. In distributions based on Debian or Ubuntu This is done through the terminal:

  1. Open Terminal (Ctrl + Alt + T).
  2. Enter the command:
    ip link show | grep ether
  3. Find the line with the name of your Wi-Fi interface (usually wlan0 or wlp3s0).

Alternative command (for older Linux versions):

ifconfig -a | grep HWaddr

If the Wi-Fi interface is inactive, the command may not display the MAC address. In this case, first enable Wi-Fi through the graphical interface or with the command:

sudo ip link set wlan0 up

(replace wlan0 to your interface).

5. Third-party utilities for determining MAC addresses

If standard methods aren't suitable (for example, due to corporate policy restrictions or a system malfunction), specialized programs can be used. They are also useful for mass scanning of MAC addresses on the network.

Utility Platform Peculiarities Link (official)
Technitium MAC Address Changer Windows Allows you to not only view but also change your MAC address. Supports a task scheduler. technitium.com
Wireshark Windows, macOS, Linux Professional traffic analyzer. Shows MAC addresses of all devices on the network. wireshark.org
Advanced IP Scanner Windows Scans the local network and displays the MAC addresses of all connected devices. advanced-ip-scanner.com
Mac Address Finder macOS A simple application for quickly finding MAC addresses of all interfaces. Mac App Store

Warning: Changing the MAC address using utilities may disrupt the operation of some networks (for example, those with hardware binding). In corporate networks, such an action may be regarded as an attempt to bypass security and lead to the device being blocked.

6. Common mistakes and how to avoid them

When searching for a MAC address, users often make common mistakes that lead to incorrect results. Let's look at the most common ones:

  • 🔍 Confused Ethernet and Wi-Fi MAC addressesLaptops usually have both adapters, and their addresses are different. Always check the parameters. Wireless network, and not Ethernet.
  • 🔄 Doesn't update data after connecting to the networkSome methods (for example, ipconfig) may not show the MAC address if the Wi-Fi adapter is inactive. Connect to any network before checking.
  • 🛠️ Ignore driversIf in Device Manager there is no tab AdditionallyThis is a sign of driver issues. Update them through the laptop manufacturer's official website.
  • 📱 They confuse the MAC address of the laptop and the routerThe address you are looking for belongs to your laptop, not the router. The router's MAC address can be found on a sticker on its body.

If none of the methods worked, check:

  1. Is the Wi-Fi adapter turned on (sometimes it is turned off by a hardware button or a key combination, for example, Fn + F2).
  2. Is the adapter not showing up in Device Manager with an exclamation mark (this means a driver error).
  3. Are you using a virtual machine or VPN that could mask your real MAC address?

FAQ: Frequently Asked Questions About Wi-Fi MAC Addresses

Is it possible to change the MAC address on a laptop?

Yes, this is possible with the help of specialized utilities (for example, Technitium MAC Address Changer for Windows or commands in Linux/macOS). However:

  • The change may break operation in MAC-based networks.
  • After rebooting, the address will return to the original one if it is not saved in the settings.
  • In some corporate networks, this action is prohibited by security regulations.
Why doesn't the router see my laptop's MAC address?

Possible reasons:

  • The random MAC address function is enabled on the laptop (disable it in the Wi-Fi settings).
  • The adapter is not connected to the network (check that Wi-Fi is turned on and the laptop can see the network).
  • The router is configured for MAC filtering and your address is not whitelisted.

Solution: Restart your laptop and router, then check the MAC address again.

Do Wi-Fi and Bluetooth have the same MAC address?

No, these are different network interfaces and have different MAC addresses. However, in some laptops, Wi-Fi and Bluetooth are combined into a single chip (for example, Intel AX200), but their addresses remain unique. You can view the Bluetooth MAC address via device Manager (chapter Bluetooth) or the command:

ipconfig /all | find "Bluetooth"

Can a MAC address contain letters?

Yes, a MAC address consists of 12 characters in hexadecimal format: numbers 0-9 and letters A-F (case-insensitive). Examples of correct addresses:

  • 00:1A:2B:3C:4D:5E
  • 00-1a-2b-3c-4d-5e
  • 001A.2B3C.4D5E

How to find the Wi-Fi MAC address on a laptop without turning it on?

If the laptop is turned off, you can only find out its MAC address:

  • Through a sticker on the case (rarely, but some manufacturers indicate it there).
  • Through the box or documentation for the laptop (even less often).
  • If your laptop has previously connected to the router, look at the list of connected devices in the router's web interface (usually at 192.168.1.1 or 192.168.0.1).

In other cases, the laptop needs to be turned on.