I've attached a Raspberry Pi running Ubuntu to my home network with a cable. It is booted up and connected to the network. The Pi has no keyboard, mouse, or monitor. If I know the IP address that was assigned to the robot, they could ssh into it.
It turns out that RasPis have a known OUI {Organizationally Unique Identifier} to their MAC addresses. All of their MAC addresses start with b8:27:eb. So if I could get a list of all the MAC addresses on my network I would be golden.
But...
arp -a | grep "b8:27:eb"
Should should do it. Except that apr -a does not produce an exhaustive and up to date list. Any ideas on how I could get an up to date list of MAC addresses on computers on the network, or get the IP address of a newly attached Raspberry Pi?
Thanks!
