PDA

View Full Version : SFTP or FTP



william.johnson
02-24-2012, 04:38 PM
do you guys use SFTP over FTP at all?

SolidShellSecur
02-27-2012, 04:34 PM
SFTP is slower since everything is encrypted. Typically FTP works if the networks are secure so no one can sniff your password.

codyjon
02-28-2012, 10:10 PM
Secure file transfer protocol(sftp) is a terminal program that encrypts the files that you send and recievei to a remote system. The Open-ssh package comes with three client programs. One of which is sftp. sftp is presently not implemented on the server.

James-A
03-05-2012, 06:40 PM
I will try to clear your confusion, SFTP is encrypted transfer protocol and is generally used if you have to transfer your sensitive data. For SFTP you will require shell access which will depend on the package that you have opted for.
If you need to transfer non-sensitive data, you can very well use FTP.

carlern60
03-06-2012, 10:32 PM
it really depends of your transfer needs.
1. SFTP - if you are going to transfer highly classified information like trade secretes and product information
2. FTP- super fast transfer..videos,audio,webpages

BlairAddison
03-09-2012, 05:21 AM
How important is it to use SFTP over FTP?

prohosterz
03-09-2012, 06:38 AM
SFTP is uses encryption method to encrypt the data that is transmitted over the network, and avoid the situations of theft. Whereas FTP works in normal mode for data transfer from client machine to server.

I personally suggest to use scp or rsync, because of the benefits of increased security and speed.

GardnerBulkeley
03-20-2012, 12:16 PM
If the data to be transferred is crucial then it is always recommended to use SFTP as it is secured compared to the FTP. In SFTP the data to be transmitted is encrypted. If you just need to transfer data which is not that crucial you can very well opt for the FTP.

rkraj
03-23-2012, 09:34 AM
For highly secure transfer we use SFTP and for general we use FTP.

Manov
05-16-2012, 02:00 AM
Ftp..............................

boybawang
05-21-2012, 09:43 PM
I'm mostly using FTP normal mode for getting into the server.

himaslendar
05-22-2012, 06:19 AM
SFTP may refer to the following. Relating to file transfer: SSH File Transfer Protocol, a network protocol designed to provide secure file transfer and manipulation facilities

fideldane15
11-26-2012, 03:36 AM
It is a matter of fact that SFTP is a lot slower since everything is encrypted. FTP works in an appropriate manner if network are secured.

denorlinen
11-26-2012, 11:07 AM
SFTP is just exists but when the matter comes of use, FTP is always preferred.

alfredo85
12-03-2012, 02:31 AM
FTP is always highly preferred to use as it is safe and secure.

manoharparakh
06-10-2021, 01:36 AM
FTP is a popular file transfer method that has been around longer than the world wide web—and it hasn’t changed much since it’s invention. Back then, it was usually assumed that internet activity was not malicious, so FTP wasn’t created as a secure file transfer protocol to deal with the kind of cybersecurity threats we now see in the news every day.

In FTP, secure channel is not provided to transfer the files between the hosts.

It establishes the connection under TCP protocol.

It works on direct method for file transfer.

==============================

SFTP (SSH File Transfer Protocol) is a secure FTP protocol that sends files over secure shell (SSH), providing a high level of protection for file transfers. SFTP provides two methods for authenticating connections:

In SFTP, secure channel is provided to transfer the files between the hosts.

It establishes the control connection under SSH protocol.

It works on tunelling method for transferring of files.

jesica
06-10-2021, 01:15 PM
FTP does not offer a secure channel to transfer files between hosts. SFTP offers a secure channel for transferring the files between the host. FTP is accessible anonymously, and in most cases, it is not encrypted. SFTP encrypts the data before sends it to another host.

hoststud
12-20-2021, 10:10 AM
SFTP is a terminal program and its slow. So if you are server owner then you must use SFTP other than you can use FTP to access your files. You can check about SFTP (https://hoststud.com/threads/steps-to-connect-your-account-via-sftp.327/).

AdrianG001
03-31-2022, 09:07 AM
SFTP and FTPS are both as secure as the client and server, which is almost always going to be the limiting factor. If either one has a particular vulnerability in the underlying SSH or TLS protocol or uses it insecurely, or if either is directly compromised, then they’re no longer ‘truly secure’.

Barring that, SFTP is among the most robustly encrypted transfer mechanisms you can use.