Every network interface on your laptop possesses a unique identifier known as the Media Access Control address. Finding this string of characters is often the first step in troubleshooting connectivity issues, setting up network restrictions, or registering a device on a corporate network. While the process might seem technical, modern operating systems provide straightforward paths to locate this information without needing external software.
Understanding the Basics
The MAC address is a 12-digit hexadecimal code, such as 01:23:45:67:89:AB, burned into the hardware of your network adapter. It acts as a permanent serial number for your device on a Local Area Network. You might need to find it to troubleshoot why a router is not connecting, to configure MAC address filtering for security, or to identify a specific machine on your network dashboard.
Using Windows Settings
For users on Windows 10 or 11, the Settings app offers the most intuitive method. This interface aggregates your hardware and network status in a clean, visual format, making it accessible for users of all skill levels.
Steps via Settings
Press the Windows key + I to open Settings.
Navigate to Network & Internet, then click on Advanced network settings.
Select the option labeled More network adapter options.
Right-click on your active connection and choose Status.
Click the Details button to view the Physical Address, which is the MAC address.
Using Command Prompt
If you prefer a text-based approach or need to retrieve this information remotely, the Command Prompt provides a direct line to the system hardware list. This method works across nearly all versions of Windows and returns the data instantly.
Steps via Command Prompt
Type cmd into the Windows search bar and right-click Command Prompt, selecting Run as administrator.
Type the command getmac and press Enter.
Look for the Physical Address column under the connection name.
Alternatively, you can use ipconfig /all and scroll through the output to find the Wireless LAN adapter or Ethernet adapter section.
Navigating on macOS
Apple’s macOS integrates network tools into the System Preferences (or System Settings), offering a graphical route that avoids the terminal for those uncomfortable with code. The process is designed to be ergonomic and user-friendly.
Steps via System Settings
Open the Apple menu and select System Settings (or System Preferences).
Click on Network.
Select the active connection (Wi-Fi or Ethernet) and click Advanced.
Navigate to the Hardware tab to view the MAC address.
Using Terminal on macOS and Linux
For Linux distributions and macOS, the Terminal provides a universal method that is incredibly efficient. This approach is particularly useful for Linux users who manage multiple machines or prefer keyboard shortcuts over navigating menus.
Steps via Terminal
Open the Terminal application.
Type the command ifconfig and press Enter.
Look for the ether or HWaddr field under the en0 or eth0 interface.
If ifconfig is not available, try typing ip link on Linux to find the link-level address.