DEV Community

Aisalkyn Aidarova
Aisalkyn Aidarova

Posted on

Runbook: Application Down (Packet Tracer / Network-Based App)

πŸ“Œ Scenario

User reports: β€œApplication is down (app.local not working)”


🎯 Goal

Quickly identify whether the issue is:

  • DNS
  • Network (IP / routing)
  • VLAN / switching
  • Server / application

πŸ” Step-by-Step Troubleshooting

1. Check DNS Resolution

ping app.local
Enter fullscreen mode Exit fullscreen mode

Result:

  • ❌ Fails β†’ possible DNS issue
  • βœ… Works β†’ DNS is OK β†’ go to Step 2

2. Check IP Connectivity

ping 192.168.50.10
Enter fullscreen mode Exit fullscreen mode

Result:

  • ❌ Fails β†’ network/routing problem
  • βœ… Works β†’ network OK β†’ go to Step 3

3. Verify IP Configuration (Client)

ipconfig
Enter fullscreen mode Exit fullscreen mode

Check:

  • IP address assigned?
  • Correct subnet?
  • Gateway present?
  • DNS server present?

Common issues:

  • No IP β†’ DHCP failure
  • Wrong subnet β†’ VLAN issue
  • Missing DNS β†’ DHCP misconfig

4. Check Default Gateway

ping 192.168.X.1
Enter fullscreen mode Exit fullscreen mode

(X = client VLAN)

Result:

  • ❌ Fails β†’ VLAN / switch / trunk issue
  • βœ… Works β†’ gateway OK β†’ continue

5. Check Server Reachability

ping 192.168.50.10
Enter fullscreen mode Exit fullscreen mode

If fails:

  • Server down
  • VLAN 50 issue
  • Routing issue

6. Check Server Services

On Server:

  • DNS β†’ ON
  • HTTP β†’ ON

Test:

Browser:

http://192.168.50.10
Enter fullscreen mode Exit fullscreen mode

7. Check VLAN Configuration

On Switch:

show vlan brief
Enter fullscreen mode Exit fullscreen mode

Verify:

  • PC ports in correct VLAN
  • Server in VLAN 50

8. Check Trunk Links

show interfaces trunk
Enter fullscreen mode Exit fullscreen mode

Verify:

  • VLANs 10,20,30,50 allowed
  • trunk is active

9. Check Routing (Router)

show ip interface brief
Enter fullscreen mode Exit fullscreen mode

Verify:

  • g0/0.10 β†’ 192.168.10.1
  • g0/0.20 β†’ 192.168.20.1
  • g0/0.30 β†’ 192.168.30.1
  • g0/1.50 β†’ 192.168.50.1

10. Check DHCP Relay

show run | include helper
Enter fullscreen mode Exit fullscreen mode

Verify:

ip helper-address 192.168.50.10
Enter fullscreen mode Exit fullscreen mode

🧠 Root Cause Mapping

Symptom Likely Issue
ping app.local fails, IP works DNS issue
no IP assigned DHCP issue
gateway unreachable VLAN/trunk issue
server unreachable routing or VLAN 50 issue
IP works, app fails application/service issue

⚑ Quick Diagnosis Flow

  1. DNS?
  2. IP?
  3. Gateway?
  4. Server?
  5. VLAN?
  6. Routing?

πŸ’‘ SRE Insight

Always troubleshoot layer by layer:

  1. DNS
  2. Network
  3. Routing
  4. Application

Never jump randomly β€” follow the chain.

Top comments (0)