Search code examples
c#asp.net-coreasp.net-core-mvc

How do I get client IP address in ASP.NET Core?


Can you please let me know how to get client IP address in ASP.NET when using MVC 6. Request.ServerVariables["REMOTE_ADDR"] does not work.


Solution

  • The API has been updated. Not sure when it changed but according to Damien Edwards in late December, you can now do this:

    var remoteIpAddress = request.HttpContext.Connection.RemoteIpAddress;