How to Know a Mac Address for a Node Knowing Its Ip on Local Network? [Duplicate]
Is There a Way to Ping an Ip, and Know the Pc Mac Address of This Ip? for Exapmle in My Network There Is a Printer Which Has the Ip 192.168.1.99 (Dynamic), I...
Is there a way to ping an IP , and know the PC mac address of this IP ?
For exapmle in my network there is a printer which has the ip 192.168.1.99 (dynamic) , i need to
its mac address to give it a reservation in dhcp .
2 Answers
If the client is in your local network:
- ping it.
- Then run this command :
ip neigh show
To do this I first ping the IP. In this example I will use the IP 10.1.1.1:
ping -c 1 10.1.1.1
Then get the MAC address from the ARP cache:
arp -a 10.1.1.1 | awk '{print $4}'
The output should be the Mac Address