Categories
Computer Science Google Glass

The Last Resort – Finding the MAC Address of Google Glass [UPDATED]

UPDATE: The Glass Team have recently made this a whole lot easier (I guess in response to a lot of requests).  Your MAC address is now available on the MyGlass page.  Just visit http://google.com/myglass, and click on “Device info”.  It’s listed below:

Finding the MAC Address of Google Glass
Finding the MAC Address of Google Glass

Original post:


So, today I needed to find the MAC address of my Google Glass so I could get an exception made on a Firewall for screen casting at an upcoming conference (Venturefest York). This was more difficult than expected (partly because of Glass, partly because of my situation), so I thought I’d explain the method that’ll reliably work for people in a similar situation.

Jump to the solution, or read what I tried first:

On most pieces of technology with networking functions, the MAC address is printed on the side of the packaging.  Saying that, I can’t think of a piece of technology where this hasn’t been the case for me.  Unfortunately, in this age of ‘Unboxing is Theatre’ and minimalistic packaging, Google omitted this on the Explorer Edition.

So, the first normal step then would be to go to the Settings app (if on a desktop or mobile device) or the control panel (if it’s a networking device) and find it there, but since Glass has such a (beautiful) minimalistic design, information not vital to the day-to-day operation of Glass is hidden.

Next, you’d normally look in your router’s control panel and find a connected device with a name matching the name of your Glass.  Unfortunately, I’m on a large organisation network without access to this kind of control panel.  I experimented with creating a personal hotspot from my phone for Glass and a Laptop, but then when I queried Glass for it’s MAC address with the arp utility it returned nonsense.

So, the solution.  You’ll need to open a shell on the device and execute the Android Network Configuration application.  To do this:

  1. You’ll need the ‘adb’ utility – download the Android SDK if you don’t have it.
  2. Enable dev/debug Mode on your Glass (Settings -> Device Info -> Turn on debug).
  3. Plug Glass into the computer you’ve got adb installed on.
  4. Run the following in your terminal:
adb shell
netcfg

and the output will include the MAC address of your Glass:


[email protected]:/ $ netcfg
lo       UP               127.0.0.1/8   0x00000049 00:00:00:00:00:00
ifb0     DOWN             0.0.0.0/0   0x00000082 ff:ff:ff:ff:ff:ff
ifb1     DOWN             0.0.0.0/0   0x00000082 ff:ff:ff:ff:ff:ff
sit0     DOWN             0.0.0.0/0   0x00000080 00:00:00:00:00:00
ip6tnl0  DOWN             0.0.0.0/0   0x00000080 ff:ff:ff:ff:ff:ff
wlan0    UP               172.20.10.2/28  0x00001043 ff:ff:ff:ff:ff:ff

(where ff represents obscured values)

So there we are!  Easy once you’ve found how to do it.