2.7 Explain basic networking concepts
📘CompTIA ITF+ (FC0-U61)
Purpose:
HTTP and HTTPS are the main protocols used to transfer web pages over the internet.
How it works:
- HTTP is the standard protocol for web communication. It lets a client (like a web browser) request information from a web server.
- HTTPS is the secure version of HTTP. It uses encryption (via SSL/TLS) to protect data while it travels over the network. This prevents hackers from reading or tampering with the data.
Key points for the exam:
- HTTP: Not secure, data is sent as plain text. Usually uses port 80.
- HTTPS: Secure, data is encrypted. Usually uses port 443.
- Commonly used for websites, web applications, and APIs in IT environments.
Example in IT:
When an employee logs into a company web portal, HTTPS ensures the username and password are encrypted during transmission.
2. POP3 (Post Office Protocol version 3)
Purpose:
POP3 is used to retrieve email from a mail server to a local computer or device.
How it works:
- POP3 downloads emails from the server to the user’s device.
- By default, emails are removed from the server after download (though some clients can leave a copy on the server).
Key points for the exam:
- Uses port 110 (unencrypted) or port 995 (encrypted with SSL/TLS).
- Good for situations where you want to store emails locally and not keep them on the server.
Example in IT:
An IT department configures employee computers to use POP3 to download company emails to local machines for offline access.
3. IMAP (Internet Message Access Protocol)
Purpose:
IMAP is also used to retrieve emails, but unlike POP3, it keeps emails on the server.
How it works:
- IMAP synchronizes emails across multiple devices.
- When you read, delete, or move an email, the change is reflected on the server and all devices.
Key points for the exam:
- Uses port 143 (unencrypted) or port 993 (encrypted with SSL/TLS).
- Ideal for users who access email from multiple devices (desktop, laptop, mobile).
Example in IT:
Employees check their work emails on a laptop, phone, and tablet. IMAP ensures all devices show the same messages and folders.
4. SMTP (Simple Mail Transfer Protocol)
Purpose:
SMTP is used to send emails from a client to a mail server or between mail servers.
How it works:
- When you click “send” in an email client, SMTP transmits the message to the recipient’s mail server.
- SMTP alone doesn’t retrieve emails — that’s POP3 or IMAP’s job.
Key points for the exam:
- Uses port 25 (traditional, often blocked by ISPs), port 587 (submission), or port 465 (encrypted).
- Works in combination with POP3 or IMAP: SMTP sends, POP3/IMAP retrieves.
Example in IT:
A corporate mail server uses SMTP to send emails from employees to clients and partners across the internet.
Quick Comparison Table for Exam
| Protocol | Purpose | Port(s) | Security | Key Feature |
|---|---|---|---|---|
| HTTP | Access web pages | 80 | None | Fast, no encryption |
| HTTPS | Secure web pages | 443 | SSL/TLS | Encrypted web traffic |
| POP3 | Receive email (download) | 110 / 995 | Optional SSL/TLS | Emails stored locally, usually removed from server |
| IMAP | Receive email (sync) | 143 / 993 | Optional SSL/TLS | Emails stay on server, sync across devices |
| SMTP | Send email | 25 / 587 / 465 | Optional SSL/TLS | Used to send emails, works with POP3/IMAP |
Tips for the exam:
- Remember HTTP vs HTTPS = “secure vs not secure.”
- POP3 vs IMAP = “download and remove vs keep and sync.”
- SMTP is only for sending, not retrieving.
