earlier this week we physically installed a machine in our server rack and connected it to our network switch. It has Scientific linux installed but we don't have a user account set up to log into. We turned it on and its running headless, but we'd like to verify that it is able to communicate on our internal network/connect to the internet through our network, because remotely right now we can't even verify that its on. Is there something we can run from another machine on our network to find it (we have its mac address) or list all machines on our local network? thanks
we've tried solutions on this server fault thread using nmap, ip neigh, and arp to scan through our local ip range and then grep for our mac address but got nothing
nmap -sP <our IP range> | grep -i "<the machine's mac address">
sudo arp -a | grep -i "<the machine's mac address">
sudo ip neigh | grep -i "<the machine's mac address">