Appearance
Get the MAC address of a Raspberry Pi player
If you need the MAC address of a Raspberry Pi for Wi-Fi or Ethernet network registration, follow these steps.
1. Open the terminal
Press Ctrl + Alt + T on the keyboard connected to the Pi.
2. List network interfaces
bash
ip addressThis prints details for every network interface on the Pi, including their MAC addresses.
3. Find the right interface
Wi-Fi — usually
wlan0. Underwlan0, find thelink/etherline. The MAC address is right afterlink/ether:3: wlan0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000 link/ether aa:bb:cc:dd:ee:ff brd ff:ff:ff:ff:ff:ffMAC:
aa:bb:cc:dd:ee:ff.Ethernet (cable) — usually
eth0. Samelink/etherline:2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000 link/ether 11:22:33:44:55:66 brd ff:ff:ff:ff:ff:ffMAC:
11:22:33:44:55:66.
4. Hand the MAC address to your network admin
wlan0for Wi-Fieth0for cable