How Do I provide client support in sshd

0

I have Target board where sshd is a daemon which will set the sftp-server and listen to client trying to connect to board using sftp protocol.But there when I try to connect to other machine from target board sftp is not working .I mean wanted to set my board as sftp client.

Is there any way to setup the above(Setting STFP-clinet) in sshd daemon??

AMIT

Posted 2013-10-01T12:29:38.020

Reputation: 499

Or do you mean the target should be a sftp proxy, i.e. you connect to it with sftp client and it connects to the real server on your behalf? – Jan Hudec – 2013-10-01T13:31:09.090

Answers

1

Ssh server and ssh client are independent components. A sftp client simply needs the sftp binary. Ssh server is not required on the computer where the client is and often is not installed there at all.

The server you want to connect to of course needs to have a ssh server with the sftp-server set.

Jan Hudec

Posted 2013-10-01T12:29:38.020

Reputation: 885

We already had stfp-server working fine on our Target but we have requirement of getting sftp client on same target,Wanted to know how can this sftp clinet as daemon?? – AMIT – 2013-10-01T13:18:30.127

@AMIT: Whether you have sftp server working there or not is irrelevant. sftp client is a simple application, not a daemon. You just need to put the application on the target. – Jan Hudec – 2013-10-01T13:26:32.287

would like to ask one more thing,Do vsftp and sftp have any relationship.Is thery any Interdependency between these two?? – AMIT – 2013-10-01T14:41:27.183

@AMIT: I've never heard of vsftp. Quick web search suggests it is a ftp server and since sftp is completely different protocol from ftp, I don't think there is a relation. – Jan Hudec – 2013-10-02T05:53:34.453