Tayyip EserIT KNOWLEDGE HUB
TRin
Back to archive

Documentation · Aug 25, 2026

Diagnosing an enterprise internet outage

Separating client, DHCP, VLAN, DNS, firewall and ISP failures with timestamped tests.

NetworkDNSTroubleshooting

Goal Separate client, DNS, LAN, firewall and ISP failures with timestamped evidence.

01

Requirements

  • The incident time window
  • Client and gateway details
  • Firewall and switch logs when available
02

Capture client configuration

Record IP, gateway and DNS during the incident. An APIPA address indicates a DHCP problem.

ipconfig /all
route print
arp -a
03

Test layer by layer

Test gateway, an external IP and finally DNS resolution.

ping <GATEWAY_IP> -n 20
ping 1.1.1.1 -n 20
nslookup example.com
tracert 1.1.1.1
04

Create a timestamped log

Capture short interruptions for later correlation.

$Targets='<GATEWAY_IP>','1.1.1.1','example.com'
while($true){foreach($Target in $Targets){$OK=Test-Connection $Target -Count 1 -Quiet -ErrorAction SilentlyContinue;"$(Get-Date -Format s) | $Target | $OK"|Out-File .\connectivity.log -Append};Start-Sleep 5}
!

Caution

Mask internal IPs, device names, usernames and private domains before sharing logs.