For the ip gurus How to get ip address if you only have the mac address
arp -a simply dumps the ARP cache of the local machine. If the local machine hasn't talked to the printer recently, the printer won't be in the ARP cache. Try a broadcast ping: something like ping 255.255.255.255 which will get everything on the network to reply _then_ do arp -a Cheers, ...