ASP Net Web API 2.1获取客户端IP地址


112

您好,我需要在Web api中获取请求某种方法的客户端IP,我尝试从此处使用此代码,但它始终返回服务器本地IP,如何以正确的方式获取?

HttpContext.Current.Request.UserHostAddress;

来自其他问题:

public static class HttpRequestMessageExtensions
    {
        private const string HttpContext = "MS_HttpContext";
        private const string RemoteEndpointMessage = "System.ServiceModel.Channels.RemoteEndpointMessageProperty";

        public static string GetClientIpAddress(this HttpRequestMessage request)
        {
            if (request.Properties.ContainsKey(HttpContext))
            {
                dynamic ctx = request.Properties[HttpContext];
                if (ctx != null)
                {
                    return ctx.Request.UserHostAddress;
                }
            }

            if (request.Properties.ContainsKey(RemoteEndpointMessage))
            {
                dynamic remoteEndpoint = request.Properties[RemoteEndpointMessage];
                if (remoteEndpoint != null)
                {
                    return remoteEndpoint.Address;
                }
            }

            return null;
        }
    }

此扩展方法对我来说效果很好。(我没有使用OWIN或其他任何异常的东西。)
Nate Barbettini 2014年

非常感谢消息来源。编辑
Stefano Mtangoo,2015年

Answers:


124

以下链接可能会对您有所帮助。这是来自以下链接的代码。

参考:通过asp-net-web-api获取客户端IP

using System.Net.Http;
using System.ServiceModel.Channels;
using System.Web;
using System.Web.Http;


namespace Trikks.Controllers.Api
{
    public class IpController : ApiController
    {
          public string GetIp()
          {
                return GetClientIp();
          }

          private string GetClientIp(HttpRequestMessage request = null)
          {
                request = request ?? Request;

                if (request.Properties.ContainsKey("MS_HttpContext"))
                {
                      return   ((HttpContextWrapper)request.Properties["MS_HttpContext"]).Request.UserHostAddress;
                }
                else if (request.Properties.ContainsKey(RemoteEndpointMessageProperty.Name))
                {
                     RemoteEndpointMessageProperty prop = (RemoteEndpointMessageProperty)request.Properties[RemoteEndpointMessageProperty.Name];
                     return prop.Address;
                }
                else if (HttpContext.Current != null)
                {
                    return HttpContext.Current.Request.UserHostAddress;
                }
                else
                {
                      return null;
                }
           }
     }
}

下面是另一种方法。

参考:如何访问客户端的IP地址

对于网络托管版本

string clientAddress = HttpContext.Current.Request.UserHostAddress;

对于自托管

object property;
        Request.Properties.TryGetValue(typeof(RemoteEndpointMessageProperty).FullName, out property);
        RemoteEndpointMessageProperty remoteProperty = property as RemoteEndpointMessageProperty;


16

尝试使用获取Ip

ip = HttpContext.Current != null ? HttpContext.Current.Request.UserHostAddress : "";

1
@DenisBabarykin我认为应该,..它在服务器变量REMOTE_ADDR中返回IP地址
user1587439

9

如果要使用OWIN自托管NuGet软件包自托管Asp.Net 2.1,则可以使用以下代码:

 private string getClientIp(HttpRequestMessage request = null)
    {
        if (request == null)
        {
            return null;
        }

        if (request.Properties.ContainsKey("MS_OwinContext"))
        {
            return ((OwinContext) request.Properties["MS_OwinContext"]).Request.RemoteIpAddress;
        }
        return null;
    }

7

回复这个已有4年历史的帖子,因为对我来说,这似乎太过复杂了,至少如果您是在IIS上托管,并且此帖子在DuckDuckGo(可能还有NSAoogle)上对于“ Web api控制器获取IP地址”的评价很高。

这是我解决的方法:

using System;
using System.Net;
using System.Web;
using System.Web.Http;
...
[HttpPost]
[Route("ContactForm")]
public IHttpActionResult PostContactForm([FromBody] ContactForm contactForm)
    {
        var hostname = HttpContext.Current.Request.UserHostAddress;
        IPAddress ipAddress = IPAddress.Parse(hostname);
        IPHostEntry ipHostEntry = Dns.GetHostEntry(ipAddress);
        ...

与OP不同,这为我提供了客户端IP和客户端主机名,而不是服务器。也许从那以后他们已经修复了该错误?


希望看到使用DotNetCore Web API的答案。我不敢相信做这么简单的事情很难。
MC9000,19年

5

最好将其转换为HttpContextBase,这样您可以更轻松地进行模拟和测试

public string GetUserIp(HttpRequestMessage request)
{
    if (request.Properties.ContainsKey("MS_HttpContext"))
    {
        var ctx = request.Properties["MS_HttpContext"] as HttpContextBase;
        if (ctx != null)
        {
            return ctx.Request.UserHostAddress;
        }
    }

    return null;
}

1
我四处搜寻,其他人似乎对此表示赞同(因为HttpContextBase更易于模拟,所以广播到HttpContextBase而不是HttpContextWrapper。)
Dave Clausen

4

我认为这是使用扩展方法最清晰的解决方案:

public static class HttpRequestMessageExtensions
{
    private const string HttpContext = "MS_HttpContext";
    private const string RemoteEndpointMessage = "System.ServiceModel.Channels.RemoteEndpointMessageProperty";

    public static string GetClientIpAddress(this HttpRequestMessage request)
    {
        if (request.Properties.ContainsKey(HttpContext))
        {
            dynamic ctx = request.Properties[HttpContext];
            if (ctx != null)
            {
                return ctx.Request.UserHostAddress;
            }
        }

        if (request.Properties.ContainsKey(RemoteEndpointMessage))
        {
            dynamic remoteEndpoint = request.Properties[RemoteEndpointMessage];
            if (remoteEndpoint != null)
            {
                return remoteEndpoint.Address;
            }
        }

        return null;
    }
}

所以就这样使用它:

var ipAddress = request.GetClientIpAddress();

我们在项目中使用它。

来源/参考:在ASP.NET Web API中检索客户端的IP地址


2

我的解决方案类似于user1587439的答案,但是直接在控制器的实例上工作(而不是访问HttpContext.Current)。

在“监视”窗口中,我看到this.RequestContext.WebRequest包含“ UserHostAddress”属性,但是由于它依赖于WebHostHttpRequestContext类型(在“ System.Web.Http”程序集内部),因此我不是能够直接访问它,所以我使用了反射来直接访问它:

string hostAddress = ((System.Web.HttpRequestWrapper)this.RequestContext.GetType().Assembly.GetType("System.Web.Http.WebHost.WebHostHttpRequestContext").GetProperty("WebRequest").GetMethod.Invoke(this.RequestContext, null)).UserHostAddress;

我并不是说这是最好的解决方案。在框架升级的情况下(由于名称更改),使用反射可能会在将来引起问题,但是对于我的需求而言,它是完美的


0
string userRequest = System.Web.HttpContext.Current.Request.UserHostAddress;

这对我有效。

System.Web.HttpContext.Current.Request.UserHostName;这个回报我与我从那里得到的回报相同UserHostAddress

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.