1Bandwidth = pipe capacity (potential). Throughput = actual measured flow. Goodput = useful application data after overhead. Never the same number.
2Latency = propagation + processing + queuing + serialization delay. VoIP requires <150 ms one-way. Satellite latency (600 ms) is fundamentally incompatible with real-time voice.
3Jitter = latency variation between consecutive packets. Causes robotic VoIP audio. Fixed by jitter buffer (adds latency, removes variation). Keep jitter <30 ms for voice.
4Packet loss: TCP retransmits (slowdown), UDP discards (degradation). VoIP: <1% acceptable. Use pathping to identify which hop drops packets.
5Congestion: multiple flows converging on a narrow link. Queue builds, packets drop, latency spikes. Fixes: link upgrade, QoS, traffic shaping.
6Wireless: CCI (same channel), ACI (adjacent channel), low RSSI, sticky clients, missing 802.11r/k/v for roaming. Use 5 GHz / 6 GHz for dense deployments.
7QoS prioritizes traffic via DSCP: EF(46) = VoIP, AF41(34) = Video, CS0 = best effort. Strict priority queue ensures voice packets skip the line.
Scenario resolved. pathping showed 18% packet loss at the WAN edge router. show interface on that router revealed 99.3% utilization and 4,200 output drops. The cause: a backup job scheduled to run at 9am was saturating the 100 Mbps WAN link.
Fix applied: QoS policy marking backup traffic CS1, VoIP EF. Backup job rescheduled to midnight. WAN link upgraded from 100 Mbps to 500 Mbps. Video calls, file transfers, and VoIP now operate without interference.
N10-009 Obj 5.4 Coverage
Bandwidth, throughput, goodput, latency (propagation/queuing/processing), jitter, jitter buffer, packet loss (TCP vs UDP), congestion, bottleneck, wireless interference (CCI/ACI), signal degradation, sticky clients, roaming (802.11r/k/v), QoS, DSCP, EF/AF/CS markings, diagnostic tools (ping, pathping, iperf3, Wireshark, show interface).