• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

SFTP Server Recommendations?

mh47g

Senior member
For Windows I use FreeSSHd, but now I am using Ubuntu. Is there a linux-like version of FreeSSHd?

Thanks,
Bill
 
Bill,

I believe that SFTP (SSH File Transfer Protocol) is simply built in to the SSH implementation on modern Linux distros. Make sure sshd is up and running on your Ubuntu box, and I think you'll see what I mean.

Joe
 
Originally posted by: Netopia
Bill,

I believe that SFTP (SSH File Transfer Protocol) is simply built in to the SSH implementation on modern Linux distros. Make sure sshd is up and running on your Ubuntu box, and I think you'll see what I mean.

Joe

Thanks Joe 🙂
 
Originally posted by: mh47g
For Windows I use FreeSSHd, but now I am using Ubuntu. Is there a linux-like version of FreeSSHd?

Thanks,
Bill

Openssh is what you want. Install it with:

# sudo apt-get install openssh-server

By default, all users on the system will be able to connect through ssh and get a console and transfer files with scp/sftp. The only other option would be if you don't want your users to be able to get a remote console, then you could use the scponly package (which actually provides sftp or scp).

You can install scponly with:

# sudo apt-get install scponly

I do not know about configuration with scponly though.
 
The latest openssh also includes the ability to chroot sftp users into arbitrary directories, which is a little more elegant than scponly. But it's pretty new and probably not in Ubuntu yet.
 
Back
Top