Can I determine the current IP from a known MAC Address?

后端 未结 7 435
难免孤独
难免孤独 2021-02-01 03:06

I have a shell script which uses etherwake to wake up a machine on my local network. After the machine is awake, I\'m not sure of the IP address.

While trying to answer

7条回答
  •  独厮守ぢ
    2021-02-01 03:30

    You could try the arp command and grep by mac address

    arp -a | grep "00:00:00:00:00:00"
    

    (replace with your own mac addr)

提交回复
热议问题