Identify and resolve causes of "general fault" or "common issue" errors when pinging the public IP address of a Windows ECS instance.
Problem description
When you ping the public IP address of a Windows instance, the system returns a "general fault" or "common issue" error.
Causes
This issue can have multiple causes. The following table lists possible causes and solutions.
|
Cause |
Solution |
|
Third-party antivirus or security software is installed on the instance. |
|
|
The gateway or route configuration of the instance is incorrect. |
|
|
Other causes |
Solutions
Check third-party antivirus or security software
Third-party antivirus or security software may control network traffic like a firewall.
Uninstall or temporarily disable the software, then ping the public IP address again.
Check the gateway and route configuration
An instance requires a correct default gateway and default route to access the Internet. If either is missing or incorrect, perform the following steps:
Step 1: Check the default gateway configuration
Run ipconfig to view the default gateway configuration.


Verify the default gateway address against the IPv4 CIDR block of the vSwitch to which the instance is connected. The correct default gateway address is the third-to-last address within the CIDR block. In this example, the vSwitch CIDR block is 172.16.0.0/24, so the correct default gateway address is 172.16.0.253.
If no default gateway is displayed or the address is incorrect, reconfigure it as follows.
Step 2: Check the default route
Run route print to check whether a default route exists.
The route with network destination and network mask both set to 0.0.0.0 is the default route. The instance uses the default route to access the Internet.

If no default route exists, add one. Replace <Default gateway address> with the actual gateway address:
route -p add 0.0.0.0 mask 0.0.0.0 <Default gateway address>
Example:
route -p add 0.0.0.0 mask 0.0.0.0 172.16.0.253
Other causes
The following factors may also cause this issue:
-
A network adapter is disabled or malfunctioning.
-
The network protocol stack is damaged due to viruses or malware.
-
Built-in network tools (disabled by default) are enabled but misconfigured. Temporarily disable these tools and configure rules to restrict traffic for troubleshooting.







