A maneira de ver o que está acontecendo no servidor é iniciar o daemon sshd com estas opções:
/usr/sbin/sshd -dD
As duas opções são (da página Man):
-D When this option is specified, sshd will not detach and does not become a daemon. This allows easy monitoring of sshd.
-d Debug mode. The server sends verbose debug output to standard error, and does not put itself in the background. The server also will not fork and will only process one connection. This option is only intended for debugging for the server. Multiple -d options increase the debugging level. Maximum is 3.
Isso deve ser suficiente. No passado, depende da sua distro. Eu recebo mensagens em /var/log/auth.log, mas você pode procurar mensagens relacionadas a ssh no mesmo diretório por meio de
find /var/log -type f -exec grep -l ssh {} \;
, que produzirá os nomes de todos os arquivos que contiverem a expressão ssh
. Você terá que verificar o conteúdo deles.