MAC Address from ARM system

I’m running a vision client on a raspberry pi, unfortunately the MAC address tag ([System]Client/Network/MACAddress) is being read as “none”.

Is this not possible to read? Thanks.

Sounds like a bug. Try putting the following in a client startup script:

from java.net import NetworkInterface

for ni in NetworkInterace.getNetworkInterfaces():
    print "%2d %s = %s" % (ni.index, ni.name, ":".join(["%02x" % b for b in ni.hardwareAddress]))

Details here.