Study CompTIA N10-009 Core Network Services: key concepts, common traps, and exam decision cues.
Core service questions are dependency questions. When DHCP, DNS, or time services break, users often describe the symptom as a “network problem” even though the physical path might still be fine. CompTIA is testing whether you can identify which service is missing or misbehaving before you start changing switches and routers.
SLAAC: Stateless address autoconfiguration, an IPv6 method for hosts to build their own addresses from router advertisements.
NTS: Network Time Security, a way to protect NTP-based time synchronization with stronger trust.
The strongest answers usually come from separating:
flowchart LR
A["Client joins network"] --> B["Gets address info"]
B --> C["Gets default gateway"]
C --> D["Resolves names"]
D --> E["Uses apps and remote services"]
B --> F["Gets correct time"]
F --> E
What to notice:
| Service | Core role | Typical symptom when broken |
|---|---|---|
| DHCP | assigns IPv4 settings such as IP, mask, gateway, DNS | client gets no valid lease or falls back incorrectly |
| SLAAC | helps build IPv6 addressing from router advertisements | IPv6 addressing behaves unexpectedly or incompletely |
| DNS | translates names to addresses | name lookups fail while direct IP access may still work |
| NTP / PTP / NTS | keep time aligned across systems | auth, logs, certificates, or timing-sensitive apps behave badly |
1IPv4 Address: 192.168.50.44
2Subnet Mask: 255.255.255.0
3Default Gateway: 192.168.50.1
4DNS Server: 192.168.50.10
What to notice:
Classify the symptom before naming the service. If IP communication works but hostnames fail, think naming. If clients lack addresses or gateway data, think DHCP. If logs do not line up or certificates fail unexpectedly, think time synchronization. CompTIA rewards quick separation of addressing, naming, and time dependencies instead of treating every outage as a generic “network problem.”
A user reports that an internal application fails by hostname, but they can still reach the same server by IP address. Their workstation has a valid IPv4 address, subnet mask, and default gateway. Other users in the same VLAN can browse external sites normally. Which conclusion is strongest first?
A. The trunk carrying the user VLAN is probably missing
B. The problem points first to name-resolution behavior rather than to basic addressing or local path failure
C. The switch port is definitely in the wrong VLAN
D. The user must have an APIPA address
Best answer: B
Why: The host already has valid addressing and direct IP reachability works. That separates service dependency from path failure and points first toward DNS or another naming issue rather than toward VLAN or DHCP failure.
Continue with 3.8 Remote Management when the service-dependency chain feels clear.