教程集 www.jiaochengji.com
教程集 >  脚本编程  >  Asp.net  >  正文 asp.net获得代理或cdn加速服务器客户真实IP地址代码

asp.net获得代理或cdn加速服务器客户真实IP地址代码

发布时间:2016-11-28   编辑:jiaochengji.com
教程集为您提供asp.net获得代理或cdn加速服务器客户真实IP地址代码等资源,欢迎您收藏本站,我们将为您提供最新的asp.net获得代理或cdn加速服务器客户真实IP地址代码资源
如果访问我们网站的Ip地址使用了cdn加速或代理形式那么我们.net获取到的Ip地址就不真实了,那么我们要如何获取到真实的IP地址了,具体看例子。


例子如下

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Text.RegularExpressions;

namespace DiLian
{
    public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            Label5.Text = GetIP();
        }

        #region bool IsIPAddress(str1) 判断是否是IP格式
        /**/
        /// <summary>
        /// 判断是否是IP地址格式 0.0.0.0
        /// </summary>
        /// <param name="str1">待判断的IP地址</param>
        /// <returns>true or false</returns>
        private 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);
        }
        #endregion


        private string GetIP()
        {

            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;

        }


    }
}
复制保存就可以了,大家可以试一下非常的不错,小编测试的是网宿cdn加速了。

您可能感兴趣的文章:
深入解析PHP获取客户端IP的方法
php获取远程客户端真实ip地址
squid多级反向代理下获取客户端真实IP地址
使用PHP来获取客户端和服务端IP
web网站加速之CDN技术原理
php获取客户端的真实IP的方法介绍
php取得服务器IP地址[非代理]的方法
asp.net获得代理或cdn加速服务器客户真实IP地址代码
php 获取网站地址的函数代码
获得客户端真实的IP地址

[关闭]
~ ~