Study Plan
2110 Topo
Each DSCP value corresponds to a traffic class. routers use it to decide:
Why it matters for media networks (like SMPTE 2110):
Common DSCP classes:
| DSCP | Binary | Name | Typical Use |
|---|---|---|---|
| 0 | 000000 | Best Effort | Normal traffic |
| 46 | 101110 | EF (Expedited Forwarding) | Voice / PTP timing |
| 34 | 100010 | AF41 | Video |
| 18 | 010010 | AF21 | Low-latency data |
| 10 | 001010 | AF11 | Background traffic |
TTL (Time To Live) Purpose: Prevents packets from circulating forever in case of routing loops.
Where it lives: Also in the IP header (1-byte field).
How it works: TTL starts as a number (e.g., 64, 128, or 255). Every router that forwards the packet decrements TTL by 1. If TTL reaches 0, the router discards the packet and sends back an ICMP “Time Exceeded” message.
Why it matters: Controls the scope of packets, especially multicast: Small TTL (e.g., 1–5): keep traffic within a LAN or local subnet. Larger TTL (e.g., 64–128): allow packets to cross WANs or reach the Internet. Helps with traceroute — each hop reduces TTL and returns an ICMP message, letting you map the route.
In summary:
DSCP = how important your traffic is. Controls priority and QoS.
TTL = how far your traffic can travel. Controls scope and loop protection.