220-801 · Question #541
Which of the following is the BEST protocol to use for securely transferring large files?
The correct answer is C. SFTP. SFTP (SSH File Transfer Protocol) is the best choice for securely transferring large files because it encrypts both authentication and data in transit over an SSH tunnel.
Question
Which of the following is the BEST protocol to use for securely transferring large files?
Options
- ATelnet
- BSSH
- CSFTP
- DFTP
How the community answered
(60 responses)- A5% (3)
- B2% (1)
- C90% (54)
- D3% (2)
Why each option
SFTP (SSH File Transfer Protocol) is the best choice for securely transferring large files because it encrypts both authentication and data in transit over an SSH tunnel.
Telnet transmits all data including usernames, passwords, and file contents in clear text, making it completely unsuitable for any secure operation.
SSH provides a secure encrypted shell for remote command execution but is not itself a file transfer protocol - SFTP is the file transfer subsystem that runs over SSH.
SFTP (SSH File Transfer Protocol) runs as a subsystem of SSH and encrypts the entire session including credentials and file data using SSH's encryption (typically AES). It is purpose-built for secure file transfer, supporting large files, resume capability, and directory operations, while providing the strong authentication mechanisms of SSH.
FTP (File Transfer Protocol) transmits credentials and file data in clear text on ports 20 and 21, with no native encryption, making it insecure for sensitive file transfers.
Concept tested: Secure file transfer protocol selection
Source: https://www.ietf.org/rfc/rfc4251.txt
Topics
Community Discussion
No community discussion yet for this question.