C#获取真实IP地址实现方法

作者:shichen2014 时间:2022-01-05 11:35:49 

本文实例讲述了C#获取真实IP地址实现方法,分享给大家供大家参考。具体实现方法如下:

通常来说,大家获取用户IP地址常用的方法是:

string IpAddress = "";

if((HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"]!=null
&& HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"] !=String.Empty) )
{
        IpAddress=HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"] ;
}
else
{
        HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];
}


事实上,上面的代码只试用与用户只使用了1层代理,如果用户有2层,3层HTTP_X_FORWARDED_FOR 的值是:"本机真实IP,1层 * ,2层 * ,....." ,如果这个时候你的数据中保存IP字段的长度很小(15个字节),数据库就报错了。

实际应用中,因为使用多层透明代理的情况比较少,所以这种用户并不多。

获取用户真实IP的方法

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Text.RegularExpressions;
namespace Common
{
    /// <summary>
    /// IPAddress 的摘要说明
    /// </summary>
public class IPAddress : System.Web.UI.Page
{

    public static Int64 toDenaryIp ( string ip )
    {
        Int64 _Int64 = 0;
        string _ip = ip;
        if ( _ip.LastIndexOf ( "." ) > -1 )
        {
            string[] _iparray = _ip.Split ( '.' );

            _Int64 = Int64.Parse ( _iparray.GetValue ( 0 ).ToString() ) * 256 * 256 * 256 + Int64.Parse ( _iparray.GetValue ( 1 ).ToString() ) * 256 * 256 + Int64.Parse ( _iparray.GetValue ( 2 ).ToString() ) * 256 + Int64.Parse ( _iparray.GetValue ( 3 ).ToString() ) - 1;
        }
        return _Int64;
    }

    /// <summary>
    /// /ip十进制
    /// </summary>
    public static Int64 DenaryIp
    {
        get {
            Int64 _Int64 = 0;

            string _ip = IP;
            if ( _ip.LastIndexOf ( "." ) > -1 )
            {
                string[] _iparray= _ip.Split ( '.' );

                _Int64 = Int64.Parse ( _iparray.GetValue ( 0 ).ToString() ) * 256 * 256 * 256 + Int64.Parse ( _iparray.GetValue ( 1 ).ToString() ) * 256 * 256 + Int64.Parse ( _iparray.GetValue ( 2 ).ToString() ) * 256 + Int64.Parse ( _iparray.GetValue ( 3 ).ToString() )-1;
            }
            return _Int64;
        }
    }

    public static string IP
    {
        get
        {
            string result = String.Empty;
            result = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
            if ( result != null && result != String.Empty )
            {
               //可能有代理
                if ( result.IndexOf ( "." ) == -1 ) //没有"."肯定是非IPv4格式
                    result = null;
                else
                {
                    if ( result.IndexOf ( "," ) != -1 )
                    {
                         //有",",估计多个代理。取第一个不是内网的IP。
                        result = result.Replace ( " ", "" ).Replace ( "", "" );
                        string[] temparyip = result.Split ( ",;".ToCharArray() );
                        for ( int i = 0; i < temparyip.Length; i++ )
                        {
                            if ( IsIPAddress ( temparyip[i] )
                                    && temparyip[i].Substring ( 0, 3 ) != "10."
                                    && temparyip[i].Substring ( 0, 7 ) != "192.168"
                                    && temparyip[i].Substring ( 0, 7 ) != "172.16." )
                            {
                                return temparyip[i]; //找到不是内网的地址
                            }
                        }
                    }
                    else if ( IsIPAddress ( result ) ) //代理即是IP格式
                        return result;
                    else
                        result = null; //代理中的内容 非IP,取IP
                }
            }

            string IpAddress = ( HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"] != null && HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"] != String.Empty )  HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"] : HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];
          
            if ( null == result || result == String.Empty )
                result = HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];

            if ( result == null || result == String.Empty )
                result = HttpContext.Current.Request.UserHostAddress;

            return result;
        }
    }

     //是否ip格式
    public static bool IsIPAddress ( string str1 )
    {
        if ( str1 == null || str1 == string.Empty || str1.Length < 7 || str1.Length > 15 ) return false;
        string regformat = @"^\\d{1,3}[\\.]\\d{1,3}[\\.]\\d{1,3}[\\.]\\d{1,3}$";
        Regex regex = new Regex ( regformat, RegexOptions.IgnoreCase );
        return regex.IsMatch ( str1 );
    }
}
}

希望本文所述对大家的C#程序设计有所帮助。

标签:C#,获取,IP,地址
0
投稿

猜你喜欢

  • 基于spring security实现登录注销功能过程解析

    2023-11-29 06:09:05
  • SpringCloud Zuul实现负载均衡和熔断机制方式

    2023-08-23 11:56:43
  • TC 集群Seata1.6高可用架构源码解析

    2022-04-18 05:02:34
  • WPF实现自带触控键盘的文本框

    2023-08-25 15:23:20
  • Maven安装及MyEclipse中使用Maven

    2023-06-20 04:29:07
  • 序列化版本号serialVersionUID的作用_动力节点Java学院整理

    2022-08-14 06:39:02
  • Java使用openssl检测网站是否支持ocsp

    2022-10-03 15:55:55
  • Android实现网易Tab分类排序控件实现

    2023-10-31 22:20:56
  • SpringBoot整合rockerMQ消息队列详解

    2021-10-03 10:55:14
  • spring缓存自定义resolver的方法

    2021-05-30 17:07:56
  • Android中判断是否联网实现代码

    2023-01-22 09:03:14
  • Android支付宝支付的示例代码

    2022-06-20 02:32:49
  • javaweb中Filter(过滤器)的常见应用

    2023-07-10 23:57:36
  • 详解Mybatis的二级缓存配置

    2023-03-20 10:48:37
  • android实现点击图片全屏展示效果

    2023-12-06 22:42:25
  • C#实现无损压缩图片的示例详解

    2023-04-29 21:07:26
  • 简述Mybatis增删改查实例代码

    2023-03-06 18:07:53
  • tcp socket客户端和服务端示例分享

    2021-10-22 13:24:17
  • 使用C#发送Http请求实现模拟登陆实例

    2023-06-22 22:25:07
  • 如何在IDE部署springboot项目(有swagger和无swagger都是一样的)到服务器或者虚拟机上的docker

    2023-09-01 00:33:25
  • asp之家 软件编程 m.aspxhome.com