Typically, on the openssh server side, you can issue the following command to start the sshd in debug:
sshd -ddd -f /etc/ssh/sshd_config
This is provided your config file lies within this path. Most linux distributions use this path, but play it safe and double-check. It will error out if it doesn't like the path.
To Troubleshoot the client side ssh request, use the following command:
ssh -vvv username@hostnameor IP address you're sending the query to
Hope this helps!
LoadedMind
|