C#如何擷取真實IP地址

來源:互聯網
上載者:User

標籤:http   io   os   ar   使用   for   strong   sp   資料   

大家擷取使用者IP地址常用的方法是

 C# 代碼   複製
  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層代理IP,2層代理IP,....." ,如果這個時候你的資料中儲存IP欄位的長度很小(15個位元組),資料庫就報錯了。 

實際應用中,因為使用多層透明代理的情況比較少,所以這種使用者並不多。 

 

 

擷取使用者真實IP的方法

 

 C# 代碼   複製
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#如何擷取真實IP地址

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.