Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Can you guys explain why is this an off topic ? – m4n07 Jan 26 at 9:44
It's not a programming-related question. Head over to unix.stackexchange.com and ask there. – Till Helge Jan 26 at 10:05
This site is about programming related questions, not about how to install and configure software. – Bo Persson Jan 26 at 10:06
1  
I suspect @Till that this may be better on Super User as it's Windows based as well; though it's worth reading their FAQ to be sure. – Ben Jan 26 at 10:07
This question is not about installing and configuring. Im trying to write a program which automates the secure file transfer in the process I have these bottlenecks. It also has an installation and configuration part . If you are aware of alternatives pls let me know and dont close this thread. – m4n07 Jan 26 at 10:10
show 1 more comment

closed as off topic by Carl Norum, DocMax, talonmies, Ajay, Bohemian Jan 26 at 7:52

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

Browse other questions tagged or ask your own question.