AP Networking 3.6: Restored Connections: Fixing a Segmented LAN

AP Networking 3.6: Restored Connections: Fixing a Segmented LAN

When a segmented network breaks, you do not guess. You pull the documentation and diff it against reality: what ipconfig, ping, a signal analyzer, or a power log shows versus what the diagram and address plan say should be true. The mismatch is your root cause.

A segmented LAN fails differently than a home network: a device can be online and still blocked, because crossing segments depends on its gateway, the firewall rules, and a DHCP server with leases left to give. This guide covers the six root causes behind almost every multi-segment fault, the readings that identify each one, and the fix and documentation update that close the case. It is Topic 3.6, the troubleshooting capstone of AP Networking Unit 3, set on the tournament network from 3.1 through 3.5.

Documentation is your first diagnostic tool

In Unit 2 you scoped a flat network by counting victims and reading status lights. A segmented LAN gives you something better: a written record of how the network should work. Its five parts each answer a troubleshooting question before you touch a cable.

Documentation part The question it answers
Topology diagram with every device and connection drawn What sits between the victim and what it cannot reach?
Consistent device names and roles (STREAM-1, streaming rig) Which physical box is the ticket about?
IP plan: each segment's subnet, mask, and gateway What should this device's settings be?
Static list: every manually addressed device, flagged Which addresses will DHCP never fix?
Security notes: firewall rules and access requirements per segment Is this block a fault, or the design working?

The rule that makes all five useful: update the documentation every time the network changes. A stale diagram sends you diffing against a network that no longer exists, which is why every fix in this topic ends with a documentation update.

The Game Day network on paper

Everything on this page uses the Unit 3 tournament network. Here is its IP plan, the artifact you diff against.

Segment Subnet Gateway Notes
PLAYERS (wired) 192.168.10.0/24 192.168.10.1 16 consoles on SW-PLAYERS; low latency
STAFF (wired) 192.168.20.0/24 192.168.20.1 Static: STREAM-1 at .50, SCORE-1 at .60
JUDGES (wireless) 192.168.30.0/24 192.168.30.1 SSID GameDay-Judges, WPA3
GUESTS (wireless) 192.168.40.0/24 192.168.40.1 SSID GameDay-Guest; DHCP pool .100-.199; internet only

Security notes: traffic between segments is denied by default, with one exception: judges may reach the scoreboard server SCORE-1 (192.168.20.60) on TCP 443. Guests get the internet only. Keep those notes in view; half of this job is telling an intentional block from a broken one.

Six root causes and their fingerprints

Before deep diagnostics, run the common solutions: restart the router, switch, or access point; restart the affected device; disconnect and reconnect; confirm the network name and password. If the problem survives all that, gather evidence. Each root cause leaves a fingerprint one tool can read.

Root cause Fingerprint Tool that shows it
DHCP server down or pool exhausted Devices show 169.254.x.x (APIPA) and cannot leave the local network ipconfig / the device's IP settings
Wrong or missing gateway or subnet mask Same-segment traffic works; anything beyond the segment fails ipconfig, diffed against the IP plan
Firewall rule blocking legitimate traffic Specific destinations time out while others respond ping: inside the segment, across segments, out to the internet
Weak wireless signal or interference Drops in one physical area; below about -70 dBm, or noise from EMI Wireless signal analyzer (app or handheld)
Unstable power Gear reboots at random; sub-5-second outages that never trip an alert Power analyzer logging voltage (110-125 V is the safe band at 120 V)
Device on the wrong SSID One victim, sitting in the wrong segment's address range The device's Wi-Fi settings plus ipconfig
Memorize three numbers: 169.254 means no DHCP lease. Weaker than -70 dBm means the access point is too far or obstructed. Below 110 V on a 120 V circuit, equipment can reboot. Each number turns a vague complaint into a named cause.

Worked walkthrough: the livestream that could not leave

Ticket. The livestream is down. STREAM-1 reaches the staff file share but nothing outside its segment. Other staff devices reach the internet fine.

Common solutions. Restarting the rig changes nothing. Gather evidence.

Evidence. ipconfig on STREAM-1: IP 192.168.20.50, mask 255.255.255.0, gateway 192.168.10.1. The IP plan says the STAFF gateway is 192.168.20.1, and the static list still shows STREAM-1 on the players segment from an early draft.

The diff. The gateway belongs to a different segment. Traffic inside 192.168.20.0/24 never touches the gateway, which is why the share works; anything leaving the segment is handed to 192.168.10.1, unreachable from the rig's own subnet. The wrong-gateway fingerprint, exactly.

Fix, verify, document. Set the gateway to 192.168.20.1. Verify both legs: the stream reaches the internet and the share still loads. Then move STREAM-1's static entry to the staff segment; the stale entry is what let this misconfiguration hide.

Worked walkthrough: the deny that ate the scoreboard

Ticket. No judge tablet can load the scoreboard, but every judge can reach the internet.

Evidence. From JUDGE-2: ping the judges' gateway, replies. Ping 8.8.8.8, replies. Ping SCORE-1 at 192.168.20.60, times out. All six tablets agree. The ACL: rule 10, DENY ALL between segments; rule 20, ALLOW TCP 443 from 192.168.30.0/24 to 192.168.20.60.

The diff. The security notes allow judges to the scoreboard, so this block is a fault, not the design. ACLs are checked top to bottom and the first match wins: rule 10 swallows the traffic before rule 20 is ever read. Order is the bug.

Fix, verify, document. Move the allow above the deny, then verify both directions: the scoreboard loads from a judge tablet, and a guest phone still cannot touch it. Testing only the side you wanted open is how segments get quietly exposed. Record the required rule order in the security notes.

Practice: Fault Tracer

Now run the diff yourself. Each case hands you documentation and one evidence artifact: an ipconfig readout, a ping matrix, an ACL listing, a signal reading, or a power log. Name the root cause, the fix, and the documentation update. Cases and choices shuffle every time; one case includes an AI diagnosis to audit.

AP Networking - Unit 3 - Topic 3.6

Fault Tracer

Diff the documentation against the evidence. Name the root cause, pick the fix, then choose the documentation update that keeps the docs true.

Case 1

The docs

    The evidence

      Step 1. What is the root cause?

      Solved: 0 / 0

      AP is a trademark of the College Board, which was not involved in the production of, and does not endorse, this resource.

      Three free practice questions

      Try these before opening the answers. Each pairs a documentation row with a reading, as the AP exam does.

      1. The guest pool is documented as 192.168.40.100-199 and 300 spectators are expected. New phones show 169.254.51.9 while earlier arrivals stay online. What is the fix?

      Expand the DHCP pool and shorten the lease. One hundred leases cannot serve three hundred phones; APIPA on the newest arrivals while early ones keep working is the exhausted-pool fingerprint, not signal or firewall.

      2. A wired rig reaches everything inside its segment but nothing outside it. Its ipconfig shows a gateway from a different subnet. Why does local traffic still work?

      Same-segment traffic never uses the gateway. Devices only hand traffic to it when the destination is off-segment, so a wrong gateway breaks exactly and only the cross-segment leg. Set the documented gateway and retest both legs.

      3. After reordering a firewall rule so judges can reach the scoreboard, what does verification require?

      Two tests, not one: the scoreboard loads from a judge tablet, and other cross-segment traffic, such as a guest phone, is still blocked. A fix is verified when the allowed path works and the denied paths still hold.

      Auditing an AI diagnosis

      Paste a ticket into an AI assistant and it produces a plausible cause in seconds, fix attached. But it only knows the ticket text. It cannot see that five of six tablets work, or that the affected one sits on the guest SSID with a 192.168.40.x address.

      So audit the diagnosis with one question: would this cause produce exactly these victims and these readings? A broken inter-segment ACL blocks every judge tablet, not one. A dead uplink leaves valid leases, not 169.254 addresses. When the theory fails the check, keep the evidence and drop the theory. When it passes, verify the fix by hand anyway, then update the docs. AI proposes; the evidence decides.

      Key terms

      Segment
      A group of devices sharing an IP range, separated from other groups for performance, management, and security.
      APIPA (169.254.x.x)
      The address a device gives itself when no DHCP server answers; it only works locally.
      DHCP pool
      The address range a DHCP server can lease out. When it runs dry, new devices get APIPA.
      Default gateway
      The router address a device sends traffic to when the destination is off-segment.
      ACL (access control list)
      An ordered list of firewall rules, checked top to bottom; the first match wins.
      dBm
      Wireless signal strength. Closer to zero is stronger; below about -70 dBm expect drops.
      UPS
      Uninterruptible power supply; battery-backed power that rides through dips and brief outages.
      Static list
      The documented record of every manually addressed device DHCP will never manage.
      PREMIUM

      Full quiz, saved progress, and every Fault Tracer case

      Unlock the full 8-question Topic 3.6 quiz, every Fault Tracer case, and saved progress that reports straight to your class gradebook. Ad-free.

      Get AP Networking premium

      Frequently asked questions

      Why does my device have a 169.254 address?

      It asked for a DHCP lease and nobody answered, so it self-assigned an APIPA address. Check whether the DHCP server is running and whether its pool has addresses left.

      Why can I reach local devices but not the internet?

      That split is the gateway fingerprint. Local traffic never uses the gateway; everything else does. Compare the configured gateway and subnet mask against the documented values for the segment.

      How do I tell a firewall block from a network fault?

      Ping in three directions: inside the segment, across segments, and out to the internet. If exactly one destination fails while the rest respond, check the ACL and the security notes before blaming hardware.

      Why does the order of firewall rules matter?

      ACLs are evaluated top to bottom and the first match is applied. A specific allow placed below a broad deny never runs, so the traffic it was meant to permit stays blocked.

      What is a good wireless signal strength in dBm?

      Readings are negative; closer to zero is stronger. Around -50 dBm is excellent; below about -70 dBm the access point is too far or obstructed and drops follow.

      Can power problems really break a network?

      Yes. Voltage dips below 110 V on a 120 V circuit can reboot switches and access points, and outages under 5 seconds disrupt DHCP leases and routing without tripping any software alert.

      What belongs in network documentation?

      A labeled topology diagram, consistent device names and roles, each segment's IP plan, a static address list, and security notes for segments with firewall rules. Update it whenever the network changes.

      Should I trust an AI's network diagnosis?

      Treat it as a theory. Ask whether that cause would produce exactly the victims and readings you observed; if not, follow the evidence. Verify any fix by hand and update the documentation yourself.

      How do I verify a fix on a segmented network?

      Confirm the affected devices hold a stable connection and reach the internal and external resources they are entitled to, and that traffic meant to stay blocked still is. Then record the change.

      AP is a trademark of the College Board, which was not involved in the production of, and does not endorse, this resource.

      Get in Touch

      Whether you're a student, parent, or teacher — I'd love to hear from you.

      Just want free AP CS resources?

      Enter your email below and check the subscribe box — no message needed. Students get daily practice questions and study tips. Teachers get curriculum resources and teaching strategies.

      Typically responds within 24 hours

      Message Sent!

      Thanks for reaching out. I'll get back to you within 24 hours.

      🏫 Welcome, fellow educator!

      I offer curriculum resources, practice materials, and study guides designed for AP CS teachers. Let me know what you're looking for — whether it's classroom materials, a guest speaker, or Teachers Pay Teachers resources.

      Email

      [email protected]

      📚

      Courses

      AP CSA, CSP, & Cybersecurity

      Response Time

      Within 24 hours

      Prefer email? Reach me directly at [email protected]