SSH not able to connect - Need help

Hi,

I am trying to connect to server using SSH command -

ssh -l <username>@<server> 22

But it just hangs there.. Any suggestions to connect via SSH will be of great help!

try this syntax:

ssh -l {username} server

The default sshd runs on port 22.

Another thing to try is this:

ssh -v -l {username} server - use 2 v's for even more info.

This will tell you exactly what is going on with the connection.

Hope this helps,

Mike

"ssh -l <username>@<server> 22" is incorrect syntax, most simple is "ssh user@host"