知識庫
If your scripts use Request.ServerVariables("REMOTE_ADDR") to get the client's IP address, they will always show the same, internal IP address due to the load balancers used for hosting your site. You can get the client's remote IP using Request.ServerVariables("HTTP_X_CLUSTER_CLIENT_IP") instead.
- 9 Users Found This Useful