64

I am often on one computer in my house and I would like to SSH to another one, but often don't know the IP address of the one I want to connect to. Is there a way, from the command line, to scan the local network so I can find the computer I want to connect to?

Andrew
  • 3,293
  • 8
  • 32
  • 35
  • 1
    If you don't know which computers are connected to **your house**'s network, I think you might have a problem... – Massimo Apr 05 '12 at 08:31
  • 1
    ...and how do you know you're sshing into the right one? Time to sort out your ip addresses / name lookups. – symcbean Apr 05 '12 at 09:00
  • 4
    In defense of Andrew: yes, it's desirable to set unchanging IPs in the DHCP lease, and to have local names. However, consider the real-world case where I just carried a headless Ubuntu PC into the office and hooked it up. For the first connection, I wanted to find the IP without carrying a keyboard and monitor over to it. To symcbean's question, it was easy to know the correct PC based on the MAC address decoding (automatically done by nmap/Zenmap) to the motherboard manufacturer, and the operating system used. Sometimes you don't know the IP and need to find it. – Phrogz Nov 12 '15 at 18:27
  • > but often don't know the IP address of the one I want to connect to Isn't this what DNS was invented for? – Chris McKeown Apr 05 '12 at 07:37

5 Answers5

108

From the command line you could use:

sudo nmap -sS -p 22 192.168.10.0/24

Substitute for the local address space on your network. I sometimes use this when I plug in a headless rasberry pi and want to find where to ssh to.

Joe ZzZ
  • 1,181
  • 2
  • 7
  • 2
53

Use "nmap" - this will tell you which hosts are up on a network, and indeed which have port 22 open. You could combine it with a few other tools (like grep) to produce more targeted output if need be.

Note: do this only on YOUR network. Running up nmap or its equivalents on someone else's network is considered bad form.

sudo nmap -p 22 192.168.0.0/24
dmourati
  • 24,720
  • 2
  • 40
  • 69
Tom Newton
  • 4,021
  • 2
  • 23
  • 28
51
nmap -p 22 --open -sV 192.168.178.0/24
Motsel
  • 638
  • 5
  • 6
4

You can manually telnet each ip at port 22.

If successful you should see the OpenSSH version string.

The process of checking each ip in the subnet can be done by means of the 'for' directive.

1

If you just want the hostnames/ips and don't want the other info:

sudo nmap -sS -p 22 192.168.1.0/24 | grep report
ericcurtin
  • 111
  • 2