Skip to content

✍ 11: Network Performance & Recovery โ€” Exercises

Network Systems

Module 11: Network Performance and Recovery 12 questions

Home Notes All Exercises Quiz

Tip

Practice โ€” try each question first, then expand the answer to check your reasoning.

Work through each question, then click โ–ถ Show answer to check yourself. Review the notes if you get stuck.


🔹 Q1. Distinguish bandwidth, throughput, latency, and jitter.

Show answer - **Bandwidth** โ€” max theoretical capacity. - **Throughput** โ€” actual achieved rate (โ‰ค bandwidth). - **Latency** โ€” delay for data to travel. - **Jitter** โ€” variation in latency between packets.

🔹 Q2. VoIP audio is choppy. Which three metrics are most likely to blame, and which QoS action helps?

Show answer **Latency, jitter, and packet loss.** Apply **QoS** โ€” mark voice (DSCP EF) and give it a **priority/low-latency queue**.

🔹 Q3. Two routers should present a single, always-available gateway to hosts. Which protocol family?

Show answer A **First-Hop Redundancy Protocol** โ€” **HSRP / VRRP** (or GLBP). They share a virtual gateway IP/MAC; a standby takes over if the active router fails.

🔹 Q4. What does STP prevent, and how?

Show answer **Layer 2 switching loops** (and the broadcast storms they cause). STP blocks redundant paths, keeping one active while a backup stands ready if the active link fails.

Show answer Bundles multiple physical links into **one logical link** for **more bandwidth** and **redundancy** โ€” if one member fails, traffic continues on the rest.

🔹 Q6. Compare full, incremental, and differential backups by what they copy and what a restore needs.

Show answer - **Full** โ€” everything; restore needs just the full. - **Incremental** โ€” changes since the **last backup**; restore needs full + **all** incrementals. - **Differential** โ€” changes since the **last full**; restore needs full + the **latest** differential.

🔹 Q7. Order hot, warm, and cold DR sites by recovery speed and cost.

Show answer Fastest/most expensive โ†’ slowest/cheapest: **Hot โ†’ Warm โ†’ Cold.** (Hot = running with current data; cold = space/power only.)

💡 Q8. RAID protects against drive failure โ€” but which RAID level mirrors data, and why isn't RAID a backup?

Show answer **RAID 1** mirrors data across two drives (either can fail). RAID isn't a backup because it doesn't protect against deletion, corruption, or ransomware โ€” those changes are written to all drives instantly.

🧰 Q9. Which protocols/tools would you use to (a) poll device metrics, (b) analyze traffic flows, (c) centralize logs?

Show answer - (a) **SNMP** (use v3 for security) - (b) **NetFlow / IPFIX / sFlow** - (c) **Syslog** (often feeding a **SIEM**)

❓ Q10. What is a network baseline, and why capture one?

Show answer A record of **normal** performance (utilization, latency, errors). Comparing current metrics to it reveals anomalies, trends, and when to upgrade โ€” you can't spot "abnormal" without knowing "normal."

🔹 Q11. Express "five nines" availability and roughly how much downtime it allows per year.

Show answer **99.999%** uptime โ†’ about **5 minutes** of downtime per year. Achieving it requires substantial redundancy and fast failover.

❓ Q12. What is failover, and how does it differ from load balancing?

Show answer - **Failover** โ€” automatic switch to a standby system when the primary fails (availability). - **Load balancing** โ€” distributes traffic across multiple active servers/paths (performance + availability). They're often combined.

โฌ…๏ธ Prev: Module 10 ยท ๐Ÿ“š All Exercises ยท Next: Module 12 โ€” Wide Area Networks โžก๏ธ

🧭 Bonus Scenario Practice

🧩 Case A: Slow Network Complaint

Users say "the network is slow" every afternoon. SNMP graphs show WAN utilization near 95%, but you do not know which application is responsible. What tool or data source should you check next?

Show answer Check NetFlow, IPFIX, or sFlow data. SNMP confirms the link is saturated, but flow data identifies top talkers, applications, protocols, and destinations so you can decide whether to tune QoS, block misuse, or upgrade capacity.

🧩 Case B: Availability Design

A business requires access to its web application during maintenance on one server. Which design is better: a single powerful server with backups, or two servers behind a load balancer? Explain.

Show answer Two servers behind a load balancer provide better availability. Backups help recovery after data loss or failure, but they do not keep the service online during planned maintenance. Load balancing can drain traffic from one server while the other continues serving users.