Module 16 Lesson 4 of 6 🕑 ~60 min

> cat module-16-4-common-scenarios.md

Common Scenarios

Frameworks and tools only matter once you use them on a real ticket. This lesson works through the authentication troubleshooting flow and seven scenarios you will genuinely see in your first year — predict the next diagnostic step before you reveal it.

1 The Authentication Troubleshooting Flow

Because this section of the course is built around authentication and MFA, it's worth having one dedicated flow for "user can't log in" — the single most common ticket category you'll see in your first year:

1Is the account locked or disabled? Check AD/Entra directly — this alone explains a large share of login tickets.
2Is the password actually correct? Confirm caps lock, keyboard layout, and whether the user recently reset it elsewhere.
3Is MFA succeeding? Check push delivery, code entry, and whether the authenticator app's clock has drifted (Module 9).
4Is the identity provider reachable? A down or unreachable IdP fails every login at once — check for a wider outage first.
5Is there a Conditional Access or policy block? Location, device compliance, or risk-based policies can silently deny sign-in (Module 10).
6Is the application/service itself down? Rule out an application-side outage once identity and policy are confirmed healthy.

Working this list top to bottom, in order, is faster than guessing — and it's exactly the "narrow the field systematically" approach from Lesson 2 applied to one specific, extremely common problem domain.

2 Scenario: The Printer That "Doesn't Work"

A user reports "the printer doesn't work." What's your first diagnostic question, before you touch anything?

Reveal the walkthrough

Scope first. Does it fail for everyone, or just this user? One user → check their print queue, driver, and permissions. Everyone → check the print server, the printer's network connection, and the printer's own physical status (paper, toner, error display) before assuming software. A print-server service that has stopped explains "everyone, all at once" instantly — and you'd never find that by reinstalling one user's driver.

3 Scenario: VPN Won't Connect

A remote user's VPN client fails to connect. Walk the layers — where do you start?

Reveal the walkthrough

Bottom-up, per Lesson 2: confirm the user has working internet at all (can they reach any website?). Then check whether the VPN gateway is reachable and healthy — is it just this user, or is the whole VPN concentrator down? Then check the user's credentials and MFA against the VPN specifically. Then check client-side certificate expiry or an outdated VPN client version. Each layer either clears the user or points you at the next one — you never guess at layer four before confirming layer one.

4 Scenario: MFA Push Never Arrives

A user says their MFA push notification never arrives on their phone. What do you check, and in what order?

Reveal the walkthrough

Confirm the user actually has network connectivity on their phone (airplane mode, Wi-Fi outage, dead battery are all common and boring). Confirm the authenticator app is signed into the correct account — a second registered device or a stale app install is a frequent cause. Check whether the identity provider's push service is experiencing a wider outage. Check whether the user's device or app needs re-registration after a phone replacement. Only after all of that would you escalate to the identity team about the push service itself.

5 Scenario: DNS Resolution Failure

A user can't reach an internal application by name, but the application is confirmed to be running. What's your fastest confirmation step?

Reveal the walkthrough

Try the IP address directly (as in Lesson 2's divide-and-conquer example). If the IP works and the hostname doesn't, it's DNS — full stop, nothing else needs investigating on the application side. From there: nslookup/Resolve-DnsName/dig the hostname, check which DNS server answered, and check whether that record is stale, missing, or pointing at the wrong IP. This is one of the highest-value two-minute tests in all of troubleshooting.

6 Scenario: Authentication Failure (General)

A single user can't sign into one specific application, but everything else works for them. Where does this land in the six-step authentication flow from §1?

Reveal the walkthrough

Since it's one user and one application, steps 1–4 (lockout, password, MFA, IdP reachability) are less likely to be the whole story — if the IdP were down, everything would fail for everyone. The likely culprits are step 5 (a Conditional Access or authorization policy scoped to that specific application) or step 6 (the application itself rejecting a token it received correctly). Check the application's own sign-in logs for the exact error code before assuming it's an identity-layer problem at all.

7 Scenario: The Application Is "Just Slow"

Users report an application is slow, not broken. What's different about troubleshooting "slow" versus troubleshooting "down"?

Reveal the walkthrough

"Down" usually gives you a clean error and a log entry. "Slow" needs timing evidence — browser DevTools' Network tab timing breakdown, database query duration, API response latency, and correlated timestamps across the request path (Lesson 3, §5) to find which single hop is disproportionately slow. A request that takes 30 seconds isn't uniformly slow everywhere — almost always one component (a query, an upstream call, a saturated link) accounts for nearly all of the delay, and your job is to isolate exactly which one.

8 Scenario: Certificate Errors

Users suddenly see a browser certificate warning for an internal site that worked fine yesterday. What's the very first thing to check?

Reveal the walkthrough

Certificate expiry — check the expiry date on the certificate itself before anything else. This is a textbook "what changed" question from Lesson 1: nothing in the application changed, but time passed, and the certificate's own validity window ran out. If expiry isn't it, check for the wrong certificate being served, an incomplete certificate chain, or a hostname mismatch. Certificate problems are also a favourite exam and interview question precisely because the fix is usually simple once you check the one obvious thing first.

Lesson Outcome

You've now applied the framework from Lessons 1–2 and the tools from Lesson 3 to seven realistic tickets. Notice the pattern repeating across every one of them: scope the problem, check what changed, work layer by layer, and gather evidence before acting. Lesson 5 moves from the technical work itself to the professional practice around it — time sync, config comparisons, escalation, documentation, and how to behave during a major incident.