On 2/11/19 11:51 AM, Didier Kryn wrote:
> Le 10/02/2019 à 18:19, Arnt Karlsen a écrit :
>>>
>>> There's nothing in the logs. It just takes verry long to start.
>
>
> Tried to set LogLevel in sshd_config?
>
> or launch sshd with the -d option ?
A quick way to do that without disrupting anything would be to run sshd
on an alternate port and then connect to that port:
sudo /usr/sbin/sshd -p 2222 -d
or
sudo /usr/sbin/sshd -p 2222 -ddd 2>&1 | tee /tmp/sshd.log
and capture the session's debugging info to a file to rummage around in.
/Lars