string requestClientIpAddress = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"]; if (string.IsNullOrEmpty(requestClientIpAddress)) requestClientIpAddress = HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"]; if (string.IsNullOrEmpty(requestClientIpAddress)) requestClientIpAddress = HttpContext.Current.Request.UserHostAddress;
테스트 후 로드 밸런싱이 있을 때 HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"]는 실제 클라이언트 IP 주소를 꺼내고 HttpContext .Current.Request.ServerVariables["REMOTE_ADDR"] 및 HttpContext.Current.Request.UserHostAddress는 할당된 예약 주소를 가져옵니다.
참고: X-Forwarded-For: 짧게 클라이언트 측을 나타내는 XFF 헤더, 즉, HTTP 요청 측의 실제 IP는 HTTP 프록시 또는 로드 밸런싱 서비스 서버를 통과한 후에만 추가됩니다.
위 내용은 ASP.NET은 클라이언트 IP를 얻습니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!