Does SFTP use port 21 or port 22?

link|improve this question

3  
That depends what port you configured it to use.. – Tom O'Connor Apr 13 '11 at 10:43
1  
Why when everybody asks for default settings somebody thinks that this is the case when user asks something else then that? – holms May 19 '11 at 13:53
feedback

5 Answers

up vote 51 down vote accepted

While TCP port 22 is the general right answer, this is dependent on the fact that SSH is configured to use the standard port and not an alternative port.

As SFTP runs as a subsystem of SSH it runs on whatever port the SSH daemon is listening on and that is administrator configurable.

link|improve this answer
feedback

SFTP usually uses port 22 but can be configured to run on virtually any port.

Port 22 is generally used for connection via SSH. SFTP is just one of protocols which can be run over SSH (others include virtual terminal). In fact, the SFTP is independent and can be run even without using SSH.

SFTP is sometimes called "Secure FTP" which leads to a common confusion with FTPS (which is called "Secure FTP" too).

Generally:

SFTP - SSH File Transfer Protocol - usually runs over TCP port 22

FTP - plain, old file transfer protocol - usually runns over TCP port 21 (+ opens separate ports for data transfer)

FTP/SSL - FTP over TSL/SSL channel.

FTPS - same as FTP/SSL

Secure FTP - either SFTP or FTPS

More info:

link|improve this answer
feedback

Its uses Port 22.

link|improve this answer
feedback

It uses whatever port SSH is setup to use.

link|improve this answer
feedback

default sftp port is 22 the same as ssh , but it can be installed on any port on the server. So you can try to connect default 22and if it fails, contact server administrator to verify port running

link|improve this answer
4  
just so you know, it's best not to answer old questions without providing new information. your answer is substantially the same as the accepted answer (from 2.5 years ago) and as such will probably be downvoted. – Michael Lowman Aug 2 '11 at 17:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.