What does NTSTATUS 0xC000020D (STATUS_CONNECTION_RESET) mean?

 
Previous Next
STATUS_CONNECTION_DISCONNECTED STATUS_TOO_MANY_NODES

STATUS_CONNECTION_RESET

The peer or network reset the transport connection

These statuses describe transport endpoint and connection state. For STATUS_CONNECTION_RESET, they can appear below higher-level file sharing, DFS, redirector, RPC, or networking code before the error is translated to Win32 or Winsock form.

A reset is an abrupt connection termination. It often means the peer closed forcibly, a middlebox injected a reset, or the protocol state was no longer valid.

For STATUS_CONNECTION_RESET, for diagnostics, capture the endpoint address, address family, connection object, local and remote close/reset events, timeout, route, ICMP condition when available, and the higher-level component that issued the transport request.

What to inspect

  • Capture packets when possible to see whether a TCP RST was received.
  • Check peer process crashes or service restarts.
  • Distinguish reset from graceful disconnect and timeout.

References for STATUS_CONNECTION_RESET


Looking for a different code? Search another status or error code.