Is there a way to get the IP address of a device (running on my host machine) if I know its MAC address from inside a Docker Container? I have already tried all the solutions suggested in here.
1) Trying to broadcast ping and using arp -a
only gives the Gateway address, since docker is running inside a subnet.
2) Using nmap
I cannot verify the MAC, I could only see if there is a live host in that address.
I tried the above by running docker in --privileged
mode and still the results are the same.