Today I did a ubuntu release upgrade on my server from 16.04 to 18.04. After the system rebooted, my ssh connection to the server (From putty) failed with "Remote side unexpectedly closed network connection". Right now I only have access to the server filesystem through the Virtuozzo power panel. In my /var/log/auth.log
there are no entries with of my login attemps. Nmap still shows an open port at 22. Right now I have no Idea where to look for causes for this problem. Through Virtuozzo I may start a repair mod, which starts a temporary setup with the original file system in a /repair
directory. Where can I look for causes of this problem?
Asked
Active
Viewed 4,351 times
2

Tyde
- 121
ssh -v <user>:<host>
from the command line. It would print a line likedebug1: Authentications that can continue: publickey,password,keyboard-interactive
. Can you print the output of the command. – randominstanceOfLivingThing Mar 28 '20 at 17:18ssh -G -vvv <username>@<host>
as per the discussion at https://serverfault.com/questions/717129/how-to-show-the-host-configured-default-ssh-configuration – randominstanceOfLivingThing Mar 28 '20 at 18:18sudo journalctl -u sshd
– randominstanceOfLivingThing Mar 29 '20 at 01:32