port XX unreachable is not returned within the response timeout period, the real server is considered healthy. Otherwise, the real server is considered unhealthy.reply or port unreachable to the health check nodes, leading to an inaccurate health check result.port XX unreachable cannot be returned, and the CLB instance considers that the health check is successful as no ICMP response is received. Therefore, the health check result is inconsistent with the actual server health.sysctl -q net.ipv4.icmp_ratelimitsysctl -q net.ipv4.icmp_ratemask
0 or 1000 (default). We commend using the default value.port unreachable messages.port unreachable messages is lifted, when the real server is connected to the public network and encounters UDP port scanning attack, it will keep returning port unreachable messages# Run the command `net.ipv4.icmp_ratemask` in step 2 to query the rate mask.# Keep the first three digits of the returned rate mask unchanged, and subtract 8 from the last digit. For example, if the mask returned is “6168”, replace "xxxx" with 6160; if it is 1819, replace "xxxx" with 1811.sysctl -w net.ipv4.icmp_ratemask=xxxx
Feedback