Server not responding — what to check

12.03.2026
Complexity
min.

Summary

Server is not responding via SSH or websites are down: check availability via ping, traceroute, and the control panel console. Below is the diagnostic procedure.

Applies to:
✔ VPS
✔ Dedicated servers
✔ Linux, Windows

Step 1: check network availability

Run ping from your computer:

ping SERVER_IP

If packets don't go through, possible causes:

  • Server is powered off or frozen
  • Network issue (ISP, routing)
  • ICMP blocked by the server firewall

Step 2: check the route to the server

Linux/macOS:

mtr -r SERVER_IP

Windows:

tracert SERVER_IP

If packet loss starts at an intermediate node, the problem is on the network side, not the server.

Step 3: check from a different network

Try checking server availability from mobile data or an online ping service. If the server is reachable from other networks, the issue is local (your ISP or router).

Step 4: check status in the control panel

Open the control panel and check:

  • Server status (running/stopped)
  • Any maintenance notifications
  • CPU and RAM usage graphs

Step 5: connect via VNC/IPMI console

If SSH/RDP are unavailable, use alternative access:

  • VPS: VNC console in the control panel
  • Dedicated server: IPMI console

Through the console, check:

top -bn1 | head -5
df -h
free -m

This will show CPU load, disk status, and memory usage.

Step 6: check if your IP is blocked

Through VNC/IPMI console:

iptables -L -n | grep YOUR_IP

Or check fail2ban:

fail2ban-client status sshd

If your IP is in the banned list:

fail2ban-client set sshd unbanip YOUR_IP

Step 7: check services

Through the console, check key services:

systemctl status sshd
systemctl status networking

If networking is down:

systemctl restart networking

Verification

After resolving the issue, make sure the server is accessible:

ping -c 4 SERVER_IP
ssh root@SERVER_IP
If the server is still unresponsive after all checks or you cannot connect via VNC/IPMI, open a support ticket. Include:
- server IP address
- ping and traceroute/MTR results
- time when the issue started
Was this information helpful?
Yes   No
 
By continuing to use this website you will be agreeing to the website Acceptable Use Policy and the Use of Cookies while using the website and our services. Please also read our Privacy Policy under which, to the extent stated, you consent to the processing of your personal data.