How to find the devices connected to my router via ethernet/usb that isn't connected to internet and find for example the private ip?
My situation is:
I am connected to the router via usb with my pc on which I run debian and to the same router I have connected via ethernet my raspberry. I want to ssh the raspberry from my pc but I need the private ip that I am not able to detect. I have tried to do this but doesn't work Getting all IPs of devices connected to the same router.
Any help is appreciated.
127.0.0.1
means "my own IP address", or the loopback interface, which cannot be reached from the outside. The IP addresses you want look like192.168.x.y
, e.g.192.168.1.1
, which is common for a router. – Nov 08 '15 at 14:05