Networking: TELNET, SSH, TLS, ARP, DNS
TELNET, SSH, TLS, ARP, DNS
📘 1. TELNET
Full Form: Telecommunication Network
Layer: Application Layer
🔹 What it does:
Remote login protocol
Access another computer and run commands
🔹 Features:
Username + password required
Gives command-line access to remote system
❌ Problem:
Sends data (username & password) in plain text
Easily intercepted (very insecure)
📌 Conclusion:
Not used in secure networks anymore
📘 2. SSH
Full Form: Secure Shell
Layer: Application Layer
🔹 What it does:
Secure remote login
Execute commands on remote machine
🔹 Features:
Encrypts username & password
Supports key-based authentication (more secure)
Used in:
Linux servers
Routers & switches
Cloud systems
🔐 Key Difference:
SSH = Secure
TELNET = Insecure
📘 3. TLS
Full Form: Transport Layer Security
🔹 What it does:
Encrypts communication between two devices
Provides:
Encryption
Integrity (no data change)
Authentication
🔹 Layer:
Works between Transport & Application layer
Practically considered Application Layer
🔹 Why needed:
Without TLS:
Passwords, messages, card info → plain text
Hackers can read data
🔹 Where used:
HTTPS websites
Mobile apps (API communication)
Email security (SMTP, IMAP, POP3 with TLS)
🔹 How it works (simple):
Client requests secure connection
Server sends certificate
Verify certificate
Create shared key
Start encrypted communication
📘 4. ARP
Full Form: Address Resolution Protocol
Layer: Network / Data Link
🔹 What it does:
Converts IP address → MAC address
Required for communication inside LAN
🔹 Why needed:
IP = logical address
MAC = physical address
Data transmission needs MAC
🔹 How it works:
Check ARP cache
If not found → Broadcast request
“Who has this IP?”
Target replies with MAC
Store in ARP table
🔹 Important:
Uses broadcasting
Works only in local network
📘 5. DNS
Full Form: Domain Name System
Layer: Application Layer
🔹 What it does:
Converts Domain name → IP address
Example:
google.com → 8.8.8.8
🔹 Why needed:
Humans remember names, not numbers
🔹 Features:
Hierarchical system (servers, zones)
Uses caching for faster response
🔹 Components:
Domain
Subdomain
DNS servers
🔹 Example:
mail.google.com → subdomain
google.com → domain
🔥 Quick Comparison (Exam Shortcut)
| Protocol | Purpose | Security | Layer |
|---|---|---|---|
| TELNET | Remote login | ❌ No encryption | Application |
| SSH | Secure remote login | ✅ Encrypted | Application |
| TLS | Secure data transmission | ✅ Encrypted | App/Transport |
| ARP | IP → MAC mapping | ❌ No encryption | Network/Data Link |
| DNS | Domain → IP | ❌ (basic) | Application |
🎯 Super Important MCQ Points
TELNET → plain text (insecure)
SSH → encrypted remote login
TLS → used in HTTPS
ARP → IP → MAC conversion
DNS → Domain → IP conversion

No comments