SFTP vs FTPS?

Nine facts to determine which protocol is right for your requirements

What’s the difference between FTPS and SFTP? Let’s first look at the technology behind each protocol, then the strengths and limitations.

What is FTPS?

So what does FTPS stand for? File Transfer Protocol Secure. FTP was around first – but not in a secured state initially. FTPS uses either the Secure Sockets Layer (SSL) or Transport Layer Security (TLS) protocols to provide connection security through encryption. This is provided by the FTPS servers x.509 format public key certificate. The certificate may be trusted (provided by a trusted certification authority), or else self-signed. Using a self-signed certificate does not mean the level of encryption is any less, just that you have to be sure that the host is who they say they are. FTPS connections are made secure either implicitly or explicitly. FTPS servers generally listen for implicit connections on port 990 and explicit connections on port 21 – although of course terver administrator may choose to use different ports if they desire.

How does FTPS work?

An implicit connection starts with the client issuing a TLS “Client Hello” message. This message implies that the connection should be secure and if the server doesn’t receive it, the connection is immediately dropped. If however the server does receive the “Client Hello” message, it will send the server certificate to the client, which will authenticate it and use it to encrypt a session key which it then sends back to the server to encrypt the session with.

In the case of explicit FTPS, the client explicitly requests security by sending an “AUTH TLS” (or AUTH SSL) command straight after the connection is made. If the AUTH command is not sent, the FTPS server will treat the client connection as a ‘regular’ non-secure FTP session instead.

Interestingly, implicit connections are not listed in RFC 2228 (the FTPS documentation), only explicit connections.

In either case, once the session has started, the client will need to authenticate to the FTPS server – normally this will be by user ID and password, but may also include client certificates if required. All FTP commands are quite naturally passed along the control channel (normally 21 for explicit or 990 for implicit), but FTPS then needs a separate channel for data communications (the actual sending of files or directory lists). The data channels are by default port 20 for explicit FTPS and port 989 for implicit FTPS. Data channels are opened as they are required, then immediately closed again (the control channel remains open for the duration of the session).

What is the difference between FTPS and SFTP?

To begin with, SFTP is not a form of FTP. In fact, FTPS and SFTP are completely unrelated and bear only a passing resemblance in the structure of many commands. SFTP is not FTP over an SSH connection, rather a distinct protocol in its own right, which makes use of the underlying SSH protocol to provide connection security and authentication. Because it is using the underlying SSH protocol, it is normal to use the SSH port (generally port 22).

With SFTP we move away from using certificates for encryption and instead use public/private key pairs, which are not signed by trusted authorities. Like an FTPS self-signed certificate, the only area of doubt is that the SFTP server is who it professes to be – once you are confident that you have connected to the right server, you simply accept the server key and proceed to exchange files over an encrypted session.

The most important difference between FTPS and SFTP is that an SFTP server requires just one port to operate on – there is not a separate data and control channel to take care of.

In contrast to FTPS where clients occasionally provide a certificate for authentication, it is common practice for SFTP batch clients to authenticate by key only to avoid the need to store and maintain passwords.

When comparing SFTP vs FTPS speed, SFTP can be slower because there are more steps to secure the transfer.

Nine differences between FTPS and SFTP

So having considered some basics, let’s look at the key differences between FTPS and SFTP. Broadly speaking, what one can do the other can too – there are a few exceptions though:

  1. FTPS will allow you to create custom commands
  2. SFTP has better control of file permissions, ownership and properties
  3. FTPS allows use of Trusted x.509 certificates
  4. An SFTP server only requires a single port to be open on the firewall 
  5. FTPS supports EBCDIC transfers
  6. SFTP allows creation of symbolic links
  7. Windows servers and clients don’t natively support SFTP
  8. SFTP is simple to install and manage on Linux and Unix servers
  9. SFTP will be slower than FTPS because there are more steps to secure the transfer

Mostly the decision on which protocol to use comes down to the requirements of the organisation. If there is a prevalence of linux/unix servers in a network, SFTP may be the better choice. However, for Windows server SFTP is not the answer. It would require SFTP clients to be installed everywhere.

In addition, some firewall administrators would be happier to use SFTP with its single port, while some server administrators may not want SSH access to their servers enabled.

Otherwise, it makes sense where possible to invest in file transfer server software that supports both protocols and leave the choice up to the clients.

Want to speak to a Pro2col expert? Get in touch today. 

FREQUENTLY ASKED QUESTIONS

Is FTPS secure enough?

Yes, both FTPS and SFTP are considered secure because they provide connection security through encryption. There are nine main difference between the two and the right one for you will depend on your requirements. Read more…

What does FTPS mean?

FTPS stands for File Transfer Protocol Secure. It uses either the Secure Sockets Layer (SSL) or Transport Layer Security (TLS) protocols to provide connection security through encryption. Read more…

Which is faster SFTP or FTPS?

FTPS is usually faster than SFTP because there are fewer steps to secure the transfer. Read more….

What is the difference between SFTP vs FTPS?

There are nine key differences:

  1. FTPS will allow you to create custom commands
  2. SFTP has better control of file permissions, ownership and properties
  3. FTPS allows use of Trusted x.509 certificates
  4. An SFTP server only requires a single port to be open on the firewall
    Read more…