Which statement best describes the main security difference between FTP and SFTP?
Think about which protocol uses SSH to secure the connection.
SFTP encrypts both commands and data using SSH, protecting passwords and files. FTP sends data and passwords in plain text, making it insecure.
What are the default network ports used by FTP and SFTP respectively?
Remember that SFTP runs over SSH which uses a specific port.
FTP typically uses port 21 for control commands, while SFTP uses port 22 because it runs over SSH.
You need to transfer sensitive company files over the internet. Which protocol should you choose and why?
Consider the importance of data privacy and protection during transfer.
SFTP encrypts all data and passwords, making it the secure choice for sensitive files. FTP does not encrypt data, risking exposure.
Why can FTP connections be more difficult to manage through firewalls compared to SFTP?
Think about how FTP opens separate connections for commands and data.
FTP uses port 21 for commands and opens additional ports for data transfer, complicating firewall configuration. SFTP uses a single port (22), simplifying firewall rules.
An organization wants to automate backups to a remote server. The server supports both FTP and SFTP. Considering security, firewall complexity, and automation ease, which protocol is best and why?
Balance security needs with network and automation considerations.
SFTP offers encrypted transfers protecting backup data, uses a single port simplifying firewall rules, and is widely supported for automation, making it the best choice.