Study CompTIA N10-009 Configuration Management & Backups: key concepts, common traps, and exam decision cues.
Configuration-management questions are state-control questions. CompTIA is usually testing whether you can keep known-good settings, recover from mistakes, and recognize when undocumented drift has turned the network into a support problem.
Baseline configuration: A known-good standard configuration used as the comparison point for support and compliance.
Configuration drift: The gradual difference between the intended standard state and the actual device state in production.
Rollback: Reverting to a previous known-good configuration after a bad or risky change.
The strongest answers usually depend on whether you can separate:
| State or artifact | Why it matters |
|---|---|
| baseline | defines what “good” should look like |
| running production config | shows what the device is doing now |
| backup | lets you restore or compare after failure or bad change |
| version history | shows when and why state changed |
| If the question is really asking about… | Strongest fit |
|---|---|
| what approved standard should look like | baseline |
| how to recover the device after a bad change | backup or rollback copy |
| who changed what and when | version history or change record |
| whether production still matches the intended design | drift detection against the baseline |
flowchart LR
A["Approved baseline"] --> B["Deploy to production"]
B --> C["Back up current state"]
C --> D["Monitor for drift or unauthorized changes"]
D --> E["Restore or correct when needed"]
What to notice:
1device: edge-fw-01
2baseline: v3.2-approved
3backup: 2026-03-29-2200
4last-restore-test: 2026-03-01
What to notice:
CompTIA often rewards the answer that protects recoverability, not just file storage. A backup is weaker when:
flowchart LR
A["Approved baseline or change plan"] --> B["Back up current state"]
B --> C["Apply controlled change"]
C --> D["Validate behavior"]
D --> E["Keep change or roll back quickly"]
E --> F["Update records and version history"]
What to notice:
CompTIA often likes the scenario where nobody changed the documented design, but the actual device now behaves differently because:
That is why config discipline improves both recovery speed and auditability.
| Clue | Why it matters |
|---|---|
| device behaves differently from the diagram or standard | actual state may have drifted |
| emergency fix was applied but never documented | drift risk increases immediately |
| multiple config files exist with unclear names | rollback confidence drops |
| restore file exists but has never been tested | recovery may fail when it matters |
Separate intended state from recoverable state. First, ask whether the scenario is about standardization or recovery. That tells you whether baseline or backup matters more. Second, ask whether the device is drifting away from the approved configuration. Third, prefer versioned, testable backups over vague claims that “we saved the config somewhere.” On the exam, trustworthy recovery depends on both good copies and confidence that they can actually be restored.
Continue with 3.5 Monitoring & Visibility to keep the domain flow intact.