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?
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?
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.