I'm writing a script to do a sftp to windows(Server) from Linux machine. I wanted the script to run without manual inputs like inputting password etc.
#!/bin/sh
HOST='10.x.x.x'
USER='user'
PASSWD='passwd'
sftp $USER@$HOST
I'm using freeftpd as a sftp server on windows machine. From the Linux end as of now i'm having (ubuntu) but my actual requirement will be for a stripped down version of linux for ARM based.
From the linux machine I'm generating Public and private keys using the "ssh-keygen -t rsa". Two files(public and private) get generated under /home/user/.ssh directory. i.e. id_rsa and id_rsa.pub. If its another linux machine i'm aware that i have to append the public key(id_rsa.pub) to the authorized_keys file.
I'm not sure now ,since my SFTP server is on windows. After installing freeFTPd i checked in C:\Program Files\freeFTPd\ , but i dont see any files resembling '.ssh/authorized_keys' of linux.
FreeFTPd has the option to generate a privatekey. So i generated one and copied the same to the linux machine (.ssh/id_rsa) file and tried . But it still prompts for password. Please help me in solving this. Thank you.