ssh out but not in

Asked by jonathan

I can ssh out but cannot ssh into my linux box?

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
Callous Crab
Solved:
Last query:
Last reply:
Revision history for this message
Best Callous Crab (callouscrab) said :
#1

Most likely you are not running the sshd (ssh daemon). Do a 'ps -ef | grep ssh' and check if you see a process /usr/bin/sshd running. In case it is not running, as root, start the daemon.
sudo /etc/init.d/sshd start.

You may have to install ssh using sudo apt-get install ssh

One more thing to look for is whether you have a firewall running.

Revision history for this message
jonathan (jejo5205) said :
#2

Thanks Callous Crab, that solved my question.