PROTOCOL
✅ Application Layer Protocols (Line by Line) 1. DNS (Domain Name System) 🔹 Translates domain names (like google.com) into IP addresses. 🔸 Port: UDP 53 (and sometimes TCP 53) 2. DHCP (Dynamic Host Configuration Protocol) 🔹 Automatically assigns IP addresses to devices in a network. 🔸 Port: UDP 67 (server), UDP 68 (client) 3. FTP (File Transfer Protocol ) 🔹 Transfers files between computers (requires login). 🔸 Port: TCP 20 (data), TCP 21 (control) 4. TFTP (Trivial File Transfer Protocol) 🔹 Simplified version of FTP, no authentication, used for booting devices. 🔸 Port: UDP 69 5. SMTP (Simple Mail Transfer Protocol) 🔹 Sends emails from client to server or server to server. 🔸 Port: TCP 25 (unsecured), TCP 587 (secured), TCP 465 (SSL) 6. POP3 (Post Office Protocol version 3) 🔹 Downloads emails from server to client and deletes them from server. 🔸 Port: TCP 110 (unsecured), TCP 995 (SSL) 7. IMAP4 (Internet Message Access Protocol version 4) 🔹 Accesses and manages emails on the s...