Por essa solução dos fóruns do RHEL intitulada: Como configurar o SSH para o modo de depuração?
Método 1 - sshd em outra porta
$ /usr/sbin/sshd -ddd -D -p (port) 2>&1
Em seguida, conecte-se a ele:
$ ssh -p (port)
Método 2 - altere o arquivo de configuração do sshd
$ vim /etc/ssh/sshd_config
Em seguida, altere o nível de registro:
LogLevel DEBUG3
E, em seguida, reinicie sshd
.
$ service sshd restart
página do manual sshd_config
$ man sshd_config
...
LogLevel:
Gives the verbosity level that is used when logging messages from sshd.
The possible values are: QUIET, FATAL, ERROR, INFO, VER-BOSE, DEBUG, DEBUG1,
DEBUG2 and DEBUG3. The default is INFO. DEBUG and DEBUG1 are equivalent. DEBUG2
and DEBUG3 each specify higher levels of debugging output. Logging with a DEBUG
level violates the privacy of users and is not recommended.