Menu

SFTP

There is a newer version of this page. You can find it here.

[[include in-progress (not found)]]

SFTP

SourceForge.net provides support for managing project web, developer web content, and uploading file releases using SFTP through our File management service.

SFTP (Secure file transfer protocol) is part of the SSH protocol suite. SFTP is not the same as FTP; SFTP is a modern, encrypted protocol and FTP is an old, unencrypted protocol. We do not support FTP.

SFTP is served via Port 22 if you are using a GUI client.

The first time you connect to web.sourceforge.net or frs.sourceforge.net you will be prompted to check the SSH Key Fingerprints, to check these, please see the following SSH Host Key Fingerprints list.

Authentication

Authenticating via SFTP requires the use of a "combined" username for the project web space. The combined username is composed of your SourceForge.net account username and the project UNIX name for which you want to upload or download files. A comma (",") is used as a delimiter between these two components.

Example:

SourceForge.net username: jsmith
User jsmith has a project with the UNIX name: fooproject
Combined username: jsmith,fooproject
Note: The Developer web space and the FRS system only require the use of your SourceForge.net account name.

The password for both cases is always the password associated with your SourceForge.net user account.

Clients

SFTP is served via Port 22

SFTP clients include:

  • sftp, a command-line client included in OpenSSH, available on Mac OS X, Linux, and BSD natively; and on MS Windows through Cygwin.
  • psftp, a command-line client included in PuTTY, available for MS Windows.
  • WinSCP, a graphical client available for MS Windows.
  • FileZilla, a graphical client available for MS Windows, Mac OS X, and Linux.

Examples are provided for sftp:

For managing file releases

FRS Hostname: frs.sourceforge.net
Path: /home/frs/project/P/PR/PROJECT_UNIX_NAME/ - Substitute your project UNIX name data for /P/PR/PROJECT_UNIX_NAME
Username: Combine your SourceForge.net Username with your SourceForge.net project UNIX name using a comma ( "," ) See Example
Password: Your SourceForge.net Password
An example session might look like (where Username="jsmith", Project UNIX name="fooproject",Release dir is "Rel_1"):

[jsmith@linux ~]$ sftp jsmith,fooproject@frs.sourceforge.net
Connecting to frs.sourceforge.net...
The authenticity of host 'frs.sourceforge.net (216.34.181.57)' can't be established.
RSA key fingerprint is 68:b3:26:02:a0:07:e4:78:d4:ec:7f:2f:6a:4d:32:c5.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'frs.sourceforge.net,216.34.181.57' (RSA) to the list of known hosts.
jsmith@frs.sourceforge.net's password:
sftp> cd /home/frs/project/f/fo/fooproject/Rel_1
sftp> put foofile
Uploading foofile to /home/frs/project/f/fo/fooproject/Rel_1/foofile
foofile                                                                                       100%  241     0.2KB/s   00:01
sftp> exit

For managing Developer Web space

Developer web Hostname: frs.sourceforge.net
Path: userweb/htdocs/
Username: Your SourceForge.net Username
Password: Your SourceForge.net Password
An example session might look like (where Username="jsmith"):

[jsmith@linux ~]$ sftp jsmith@frs.sourceforge.net
Connecting to frs.sourceforge.net...
The authenticity of host 'frs.sourceforge.net (216.34.181.57)' can't be established.
RSA key fingerprint is 68:b3:26:02:a0:07:e4:78:d4:ec:7f:2f:6a:4d:32:c5.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'frs.sourceforge.net,216.34.181.57' (RSA) to the list of known hosts.
jsmith@frs.sourceforge.net's password:
sftp> cd userweb/htdocs
sftp> put index.html
Uploading index.html to /incoming/j/js/jsmith/userweb/htdocs/index.html
index.html                                                                                       100%  241     0.2KB/s   00:01
sftp> exit

For managing Project Web space

Project web Hostname: web.sourceforge.net
Path: htdocs/
Username: Combine your SourceForge.net Username with your SourceForge.net project UNIX name using a comma ( "," ) See Example
Password: Your SourceForge.net Password
An example session might look like the following for Username "jsmith" uploading a file for his project with a UNIX name of "fooproject":

[jsmith@linux ~]$ sftp jsmith,fooproject@web.sourceforge.net
Connecting to web.sourceforge.net...
The authenticity of host 'web.sourceforge.net (216.34.181.57)' can't be established.
RSA key fingerprint is 68:b3:26:02:a0:07:e4:78:d4:ec:7f:2f:6a:4d:32:c5.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'web.sourceforge.net,216.34.181.57' (RSA) to the list of known hosts.
jsmith,fooproject@web.sourceforge.net's password:
sftp> cd htdocs
sftp> put index.html
Uploading index.html to /home/groups/f/fo/fooproject/htdocs/index.html
index.html                                                                                       100%  241     0.2KB/s   00:01
sftp> exit

Batch mode

To use sftp in batch mode, you need 3 things:

  • Use key-based authentication, since password entry can't safely be automated.
  • Have the batch file in the form of "put filename1 \n put filename 2 \n etc..."
  • Use username,groupname so that access to the files afterwards is possible (See Example).

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.