-
Notifications
You must be signed in to change notification settings - Fork 404
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
please add the sftp-server, so a static dropbearmulti with sftp func is possible #155
Comments
It looks like OpenSSH's sftp-server would require at least a dozen .c files to build. It seems relatively separate from other parts of OpenSSH, though would still need various configure tests etc. Perhaps it could be added in a subdirectory - I'm not sure if I'll get to it myself but I wouldn't object if someone wants to add it. Of course we might then need to add sftp client too if OpenSSH removes scp as a server. |
And not a import but an easy option in the makefile to auto integrate a separate automatic openssh build? |
I have just learned that modern releases of openssh have deprecated the scp protocol. When using dropbear as server and an openssh client, legacy So folks using dropbear as SSH server will need a solution to support sftp for secure file transfer in the future. |
Not sure if it makes sense to bundle those, since Dropbear and the OpenSSH SFTP server are two entirely dedicated standalone projects which can be plug&play combined trivially by end users? If I'm not mistaken, the only thing that needs to exist on Linux distros is |
I tried to compile Openssh sftp-server, but it cannot be called by Dropbear subsystem. Is there any relevant information about transplanting sftp-server? |
As said, it works here OOTB with any SFTP server binary located at |
Well I have an integrated small scp integrated in dropbear which does the -f -t -p options and integrates in svr-chansession.c |
I was able to simple compile sftp-server from the project openssh-portable with
just change to host to your need. And move the binary next to the dropbear or somewhere in the PATH. |
i managed to use the openssh sftp server in dd-wrt with dropbear and its just 22 kb on mips platform |
please add a standalone version of OpenSSH's sftp-server program, so a make like:
./configure --enable-static make PROGRAMS="dropbear dbclient scp" MULTI=1
for make a static dropbearmulti with sftp-server func is possible.
The text was updated successfully, but these errors were encountered: