On a new installation of Ubuntu 22.04 I can not connect to my servers from terminal using ssh.
I use this command as I have always done for almost 10 years.
ssh user@host -p55555
After some time the server replies:
ssh: connect to host 11.22.33.44 port 12345: Connection timed out
I tried to see if there is an active firewall but I can find any.
Do I have to config something new in this version to have access to my servers?
From dolphin explorer I can perfectly connect with the same servers using ftps.
-p55555
. Is this a typo? If your ssh server is on port 55555, you need to add a space-p 55555
. Also, your ssh connection error message says you are trying to connect to port 12345. Which is it? If your ssh server is on port 22 you do not need to use the-p
tag at all. If it's on another port you need to use the correct port in your command and the syntax must be correct – Nmath Jul 12 '22 at 19:45