Stop ssh server and ssh broker services on Windows to avoid SSH port conflict
Makes the following changes to /etc/ssh/sshd_config :
UsePrivilegeSeparation no PasswordAuthentication yes
Then restart the sudo service ssh restart server. If you see the error could not load host key , then create the host key as shown below and restart the ssh service:
sudo ssh-keygen -f /etc/ssh/ssh_host_rsa_key -b 4096 -t rsa
source share