Loading...
Question 297 of 319

Which of the following protocols is primarily used for secure communication over a computer network?

  • HTTP
  • FTP
  • SSH
  • SMTP

Correct Answer: C

Explanation
The correct option is C. SSH. Detailed Explanation 1. Understanding the Protocols: - HTTP (Hypertext Transfer Protocol): This is the foundation of data communication on the web. However, it is not secure, meaning that data sent over HTTP can be intercepted and read by unauthorized parties. - FTP (File Transfer Protocol): This protocol is used for transferring files between a client and a server. Like HTTP, standard FTP does not encrypt data, making it vulnerable to interception. - SSH (Secure Shell): This protocol is specifically designed for secure communication over a computer network. It provides a secure channel over an unsecured network by using encryption. SSH is commonly used for secure remote login and command execution. - SMTP (Simple Mail Transfer Protocol): This protocol is used for sending emails. While it can be secured using extensions like STARTTLS, the basic SMTP protocol itself does not provide encryption. 2. Why SSH is the Correct Answer: - Encryption: SSH encrypts the data being transmitted, which protects it from eavesdropping and man-in-the-middle attacks. This is crucial for maintaining confidentiality and integrity of the data. - Authentication: SSH supports various authentication methods, including password-based and public key authentication, which enhances security by ensuring that only authorized users can access the system. - Secure Remote Access: SSH is widely used for secure remote administration of systems, allowing users to log into another computer over a network securely. 3. Why the Other Options are Incorrect: - A. HTTP: As mentioned, HTTP does not provide any encryption, making it unsuitable for secure communication. Sensitive data transmitted over HTTP can be easily intercepted. - B. FTP: Standard FTP also lacks encryption, which means that any files transferred can be viewed by anyone who intercepts the data stream. Secure versions of FTP, like FTPS or SFTP (which is based on SSH), do exist, but standard FTP is not secure. - D. SMTP: While SMTP is essential for email transmission, it does not inherently secure the data being sent. Although it can be secured with extensions, the basic protocol does not provide encryption, making it less secure than SSH. Common Pitfalls:
  • Confusing Secure Versions: Students often confuse protocols with their secure versions. For example, SFTP (SSH File Transfer Protocol) is secure, but standard FTP is not.
  • Assuming All Protocols are Secure: Just because a protocol is widely used does not mean it is secure. Always check if the protocol has built-in security features.
  • Misunderstanding the Purpose: Each protocol serves a different purpose. Understanding what each protocol is designed for can help in identifying which one is secure for communication.
Revision Summary:
  • SSH is the primary protocol for secure communication over networks, providing encryption and secure authentication.
  • HTTP and FTP are not secure; they transmit data in plain text.
  • SMTP is used for email but lacks inherent security features.
  • Always verify if a protocol has security measures before using it for sensitive data.
← Previous Next →
Jump to: 297 298 299 300 301 302 303 304 305 306