Issue: Limited network connectivity
Resolution: Refresh DHCP
Verify/Resolve: ipconfig
Issue (drop-down)
Limited network connectivity
Why this matches:
“Internet Down” most commonly indicates the workstation has lost valid Layer 3 connectivity (bad/expired DHCP lease, APIPA address, wrong gateway, etc.). In CompTIA A+ terms, this aligns best with limited connectivity symptoms (can’t reach internet resources).
Resolution (drop-down)
Refresh DHCP
Why this is the most efficient fix:
If the client has:
an expired lease
an APIPA address (169.254.x.x) because DHCP failed
an incorrect IP/gateway from a bad lease
…then the fastest first remediation is to renew DHCP to obtain a correct IP address, default gateway, and DNS servers. This is a standard CompTIA A+ troubleshooting action (quick, low-risk, high-success).
Verify/Resolve (drop-down)
ipconfig
Why this is the correct verification tool:
ipconfig is the primary Windows CLI tool to:
check current IP settings (ipconfig /all)
release/renew DHCP (ipconfig /release and ipconfig /renew)
confirm you received a valid IP + gateway + DNS, which is required for internet access.
What you would do (mapped to those choices)
Using ipconfig to complete “Refresh DHCP” and confirm the fix:
Check current addressing
ipconfig /all
Look for:
Valid IPv4 (not 169.254.x.x)
Valid Default Gateway
DNS servers present
Refresh the DHCP lease
ipconfig /release
ipconfig /renew
Verify outcome
Run ipconfig again to confirm:
You now have a correct IP for the network
Default gateway is populated
If the gateway/DNS populate correctly, internet access typically returns.
Submit