Troubleshooting guide · website-errors · Published 2026-08-16 · 3 min read

ERR_CONNECTION_RESET in Chrome explained

ERR_CONNECTION_RESET explained: what TCP reset means, server and client causes, and the debugging order that fixes it.

What a connection reset means

ERR_CONNECTION_RESET is Chrome's message when the server or an intermediate device aborts the TCP connection while it is still in use. A normal close sends a FIN packet; a reset sends an RST packet, which tells both sides that the connection was dropped without a clean finish. The browser interprets that as "the connection was reset" and shows the error instead of a page.

The reset can come from many places: the origin server, a load balancer, a firewall, a security module, or something on the visitor's own network. Because the message is generic, the debugging order is to decide which side reset the connection before changing anything.

Check the client side first

Check the server side

CauseTypical reset pointFix
Extension or VPNBrowser or client gatewayClean profile, disable VPN
Antivirus HTTPS scanLocal intercepting proxyWhitelist, disable scan
WAF / bot ruleEdge security moduleReview rule, allow the client
HTTP/2 stream resetOrigin or CDNCheck server config change
Server resource cutOriginReview logs and limits

A worked example

A visitor reports the reset on one URL only. Start on mobile data: it loads, so the site is fine. In the original browser profile, disable the ad-blocker for the domain and the reset clears, confirming a client-side HTTP(S) filter. That kind of isolation is the fastest path and is why every reset investigation should rule out the client before touching the server.

When the reset keeps happening

If the reset reproduces for many users, focus on the server and its edge. Re-trace the request with the CDN bypassed, confirm the origin can hold the connection, then inspect the access and error logs together. The timed out and domain resolution guides cover the neighbouring causes you can rule out in the same pass.

Need a website built, fixed, optimised, migrated or replaced?

This technical resource is written by CSMBAC, a small design and development studio. If you would rather hand the problem to a professional, the website service page explains how we build enquiry-ready websites.

Explore website services