| Name | Protocol | Purpose | Header overhead |
|---|---|---|---|
| IP datagram | IPv4 / IPv6 | Carries all higher-layer data across routers; each router reads the destination address and forwards independently. | 20 B (IPv4 min) / 40 B (IPv6) |
| TCP segment | TCP (inside IP) | Reliable, ordered byte stream; carries sequence/ack numbers, flags, and a window field for flow control. | 20 B min (+ IP header) |
| UDP datagram | UDP (inside IP) | Unreliable, unordered delivery; no retransmission. Used for DNS, QUIC, video streaming, and real-time games. | 8 B (+ IP header) |
| ICMP message | ICMP (inside IP) | Control and error reporting: Echo Request/Reply (ping), Destination Unreachable, Time Exceeded (traceroute). | 8 B (+ IP header) |
| Method | Semantics | Idempotent? |
|---|---|---|
| GET | Retrieve a resource; must not modify state. | Yes |
| POST | Create a new resource or trigger an action. | No |
| PUT | Replace a resource entirely. | Yes |
| PATCH | Apply a partial update to a resource. | No (by default) |
| DELETE | Remove a resource. | Yes |
| Brand | Standard | Max Throughput | Bands | Key Additions |
|---|---|---|---|---|
| Wi-Fi 4 | 802.11n | 600 Mbps | 2.4 / 5 GHz | MIMO, 40 MHz channel bonding |
| Wi-Fi 5 | 802.11ac | 3.5 Gbps | 5 GHz only | MU-MIMO (downlink), 80/160 MHz channels, 256-QAM |
| Wi-Fi 6 | 802.11ax | 9.6 Gbps | 2.4 / 5 GHz | OFDMA, BSS Coloring, Target Wake Time, 1024-QAM |
| Wi-Fi 6E | 802.11ax | 9.6 Gbps | 2.4 / 5 / 6 GHz | 1.2 GHz of new unlicensed 6 GHz spectrum |
| Wi-Fi 7 | 802.11be | 46 Gbps | 2.4 / 5 / 6 GHz | Multi-link operation, 320 MHz channels, 4096-QAM |
| Protocol | Year | Cipher | Status |
|---|---|---|---|
| WEP | 1999 | RC4, 40-bit key, 24-bit IV | Broken; key recoverable from ~50,000 packets. Do not use. |
| WPA (TKIP) | 2003 | RC4 + per-packet keys | Deprecated; emergency fix while 802.11i was finalized. |
| WPA2 (802.11i) | 2004 | AES-CCMP, 128-bit | Widely deployed; vulnerable to KRACK (2017) on unpatched clients. |
| WPA3 | 2018 | AES-GCMP, SAE key exchange | Current standard; forward secrecy, PMF mandatory. |