Edit remote machine /etc/ssh/sshd_config PasswordAuthentication no RSAAuthentication yes PubkeyAuthentication yes
Bonus: Generate server private key for anywhere access using key only
Generate key on server ssh-keygen
Put the key into authorizedkey file echo \cat ~/.ssh/uploadedkey.pub` >> ~/.ssh/authorized_keys`
Copy key from machine to local machine using SCP scp user@192.168.0.103:/home/user/.ssh/id_rsa ~/user/Desktop
(Edit the username, IP address and folder accordingly)
Convert the id_rsa file to putty file for use in Putty