1

Possible Duplicate:
FTP v/s SFTP v/s FTPS

I want to establish a secure file transfer system, but I'm very confused about choosing between SFTP and FTP SSL.

Can you give me some suggestion and consideration why I use SFTP or FTP SSL?

Jason Aller
  • 139
  • 6
adi sembiring
  • 113
  • 1
  • 1
  • 4

1 Answers1

0

FTPs is SSL layer on top of FTP protocol.

You are connecting to ftp service port ( default 21 ) , traffic transfered is protected with SSL.

SFTP is subsystem of SSH service.

You are connecting to ssh server ( port 22 by default ) , traffic is transfered securely using secure channel similar to one in case with FTPs.

Hrvoje Špoljar
  • 5,162
  • 25
  • 42