MVC 6을 사용할 때 ASP.NET에서 클라이언트 IP 주소를 얻는 방법을 알려주십시오 Request.ServerVariables["REMOTE_ADDR"]
.
MVC 6을 사용할 때 ASP.NET에서 클라이언트 IP 주소를 얻는 방법을 알려주십시오 Request.ServerVariables["REMOTE_ADDR"]
.
답변:
API가 업데이트되었습니다. 언제 바뀌 었는지 확실하지 않지만 12 월 말 에 Damien Edwards 에 따르면 다음 과 같이 할 수 있습니다.
var remoteIpAddress = request.HttpContext.Connection.RemoteIpAddress;
RemoteIpAddress
항상 null
내가 IIS에 자신의 웹 사이트를 게시하고 파일에이 로그인 할 때, 나를 위해.
project.json에서 다음에 대한 종속성을 추가하십시오.
"Microsoft.AspNetCore.HttpOverrides": "1.0.0"
에서 Startup.cs
의의 Configure()
방법 추가 :
app.UseForwardedHeaders(new ForwardedHeadersOptions
{
ForwardedHeaders = ForwardedHeaders.XForwardedFor |
ForwardedHeaders.XForwardedProto
});
그리고 물론 :
using Microsoft.AspNetCore.HttpOverrides;
그런 다음 다음을 사용하여 ip를 얻을 수 있습니다.
Request.HttpContext.Connection.RemoteIpAddress
필자의 경우 VS에서 디버깅 할 때 항상 IpV6 localhost를 얻었지만 IIS에 배포 할 때 항상 원격 IP를 얻었습니다.
유용한 링크 : ASP.NET CORE에서 클라이언트 IP 주소는 어떻게 얻습니까? 및 RemoteIpAddress는 항상 null입니다
은 ::1
어쩌면 때문에입니다 :
IIS에서 연결이 종료되면 v.next 웹 서버 인 Kestrel로 전달되므로 웹 서버에 대한 연결은 실제로 localhost에서 이루어집니다. ( https://stackoverflow.com/a/35442401/5326387 )
로드 밸런서의 존재를 처리하기 위해 일부 대체 논리를 추가 할 수 있습니다.
또한 검사를 통해 X-Forwarded-For
헤더는로드 밸런서가 없어도 설정됩니다 (추가 Kestrel 계층 때문에)?
public string GetRequestIP(bool tryUseXForwardHeader = true)
{
string ip = null;
// todo support new "Forwarded" header (2014) https://en.wikipedia.org/wiki/X-Forwarded-For
// X-Forwarded-For (csv list): Using the First entry in the list seems to work
// for 99% of cases however it has been suggested that a better (although tedious)
// approach might be to read each IP from right to left and use the first public IP.
// http://stackoverflow.com/a/43554000/538763
//
if (tryUseXForwardHeader)
ip = GetHeaderValueAs<string>("X-Forwarded-For").SplitCsv().FirstOrDefault();
// RemoteIpAddress is always null in DNX RC1 Update1 (bug).
if (ip.IsNullOrWhitespace() && _httpContextAccessor.HttpContext?.Connection?.RemoteIpAddress != null)
ip = _httpContextAccessor.HttpContext.Connection.RemoteIpAddress.ToString();
if (ip.IsNullOrWhitespace())
ip = GetHeaderValueAs<string>("REMOTE_ADDR");
// _httpContextAccessor.HttpContext?.Request?.Host this is the local host.
if (ip.IsNullOrWhitespace())
throw new Exception("Unable to determine caller's IP.");
return ip;
}
public T GetHeaderValueAs<T>(string headerName)
{
StringValues values;
if (_httpContextAccessor.HttpContext?.Request?.Headers?.TryGetValue(headerName, out values) ?? false)
{
string rawValues = values.ToString(); // writes out as Csv when there are multiple.
if (!rawValues.IsNullOrWhitespace())
return (T)Convert.ChangeType(values.ToString(), typeof(T));
}
return default(T);
}
public static List<string> SplitCsv(this string csvList, bool nullOrWhitespaceInputReturnsNull = false)
{
if (string.IsNullOrWhiteSpace(csvList))
return nullOrWhitespaceInputReturnsNull ? null : new List<string>();
return csvList
.TrimEnd(',')
.Split(',')
.AsEnumerable<string>()
.Select(s => s.Trim())
.ToList();
}
public static bool IsNullOrWhitespace(this string s)
{
return String.IsNullOrWhiteSpace(s);
}
_httpContextAccessor
DI를 통해 제공되었다고 가정합니다 .
IHttpConnectionFeature
이 정보를 얻기 위해를 사용할 수 있습니다 .
var remoteIpAddress = httpContext.GetFeature<IHttpConnectionFeature>()?.RemoteIpAddress;
httpContext.GetFeature<IHttpConnectionFeature>()
항상 null
.
ASP.NET 2.1의 StartUp.cs에서이 서비스를 추가합니다.
services.AddHttpContextAccessor();
services.TryAddSingleton<IActionContextAccessor, ActionContextAccessor>();
그런 다음 3 단계를 수행하십시오.
MVC 컨트롤러에서 변수 정의
private IHttpContextAccessor _accessor;
컨트롤러 생성자에 DI
public SomeController(IHttpContextAccessor accessor)
{
_accessor = accessor;
}
IP 주소 검색
_accessor.HttpContext.Connection.RemoteIpAddress.ToString()
이것이 수행되는 방법입니다.
::1
IPv6의 localhost입니다. IPv4 상당127.0.0.1
제 경우에는 Docker와 nginx를 리버스 프록시로 사용하여 DigitalOcean에서 DotNet Core 2.2 웹 앱을 실행하고 있습니다. Startup.cs의이 코드를 사용하여 클라이언트 IP를 얻을 수 있습니다
app.UseForwardedHeaders(new ForwardedHeadersOptions
{
ForwardedHeaders = ForwardedHeaders.All,
RequireHeaderSymmetry = false,
ForwardLimit = null,
KnownNetworks = { new IPNetwork(IPAddress.Parse("::ffff:172.17.0.1"), 104) }
});
:: ffff : 172.17.0.1은 사용하기 전에 얻은 IP였습니다.
Request.HttpContext.Connection.RemoteIpAddress.ToString();
나는 당신 중 일부가 당신이 얻는 IP 주소가 ::: 1 또는 0.0.0.1이라는 것을 발견했습니다.
이것은 자신의 컴퓨터에서 IP를 가져 오려고 시도하고 IPv6을 반환하려고하는 C #의 혼란 때문에 발생하는 문제입니다.
따라서 @Johna ( https://stackoverflow.com/a/41335701/812720 ) 및 @David ( https://stackoverflow.com/a/8597351/812720을 그들에게, 감사합니다)!
그리고 여기에 해결책이 있습니다.
참조에 Microsoft.AspNetCore.HttpOverrides 패키지 추가 (종속성 / 패키지)
Startup.cs에이 줄을 추가하십시오
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
// your current code
// start code to add
// to get ip address
app.UseForwardedHeaders(new ForwardedHeadersOptions
{
ForwardedHeaders = ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto
});
// end code to add
}
IPAddress를 얻으려면 Controller.cs에서이 코드를 사용하십시오.
IPAddress remoteIpAddress = Request.HttpContext.Connection.RemoteIpAddress;
string result = "";
if (remoteIpAddress != null)
{
// If we got an IPV6 address, then we need to ask the network for the IPV4 address
// This usually only happens when the browser is on the same machine as the server.
if (remoteIpAddress.AddressFamily == System.Net.Sockets.AddressFamily.InterNetworkV6)
{
remoteIpAddress = System.Net.Dns.GetHostEntry(remoteIpAddress).AddressList
.First(x => x.AddressFamily == System.Net.Sockets.AddressFamily.InterNetwork);
}
result = remoteIpAddress.ToString();
}
이제 remoteIpAddress 또는 결과 에서 IPv4 주소를 얻을 수 있습니다
실행 중 .NET core
(3.1.4)IIS
로드 밸런서 뒤에서 다른 제안 된 솔루션에서는 작동하지 않았습니다.
수동으로 X-Forwarded-For
헤더를 읽습니다 .
IPAddress ip;
var headers = Request.Headers.ToList();
if (headers.Exists((kvp) => kvp.Key == "X-Forwarded-For"))
{
// when running behind a load balancer you can expect this header
var header = headers.First((kvp) => kvp.Key == "X-Forwarded-For").Value.ToString();
ip = IPAddress.Parse(header);
}
else
{
// this will always have a value (running locally in development won't have the header)
ip = Request.HttpContext.Connection.RemoteIpAddress;
}
호스팅 번들을 사용하여 자체 포함 패키지를 실행하고 있습니다.
Ubuntu에서 Traefik 리버스 프록시 뒤에서 ASP.NET Core 2.1을 실행 KnownProxies
하는 경우 공식 Microsoft.AspNetCore.HttpOverrides
패키지를 설치 한 후 게이트웨이 IP를 설정해야 합니다
var forwardedOptions = new ForwardedHeadersOptions {
ForwardedHeaders = ForwardedHeaders.XForwardedFor,
};
forwardedOptions.KnownProxies.Add(IPAddress.Parse("192.168.3.1"));
app.UseForwardedHeaders(forwardedOptions);
설명서 에 따르면 리버스 프록시가 로컬 호스트에서 실행되고 있지 않은 경우에 필요합니다. docker-compose.yml
Traefik의는 고정 IP 주소를 할당 한 :
networks:
my-docker-network:
ipv4_address: 192.168.3.2
또는 .NET Core에서 게이트웨이를 지정하기 위해 알려진 네트워크가 여기에 정의되어 있으면 충분합니다.
httpContext.GetFeature<IHttpConnectionFeature>().RemoteIpAddress