日期:2014-05-17  浏览次数:20478 次

asp.net 获取客户端外网IP,不要内网的
如题,请问大虾们怎么实现

------解决方案--------------------
public static string GetUserIP()
{
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 
}
}

if (null == result || result == String.Empty)
{
result = HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];
if (result == "::1")
result = "127.0.0.1";
}
return result;
}
------解决方案--------------------
探讨

我的服务器在校园网,有两个IP,一个是外网IP,一个是内网IP。那么外网的客户端一定要通过外网IP登录吧?这时我要获取这些外网客户端的IP,它应该一定是外网的吧!
另外,因为我们内部网络是动态分配IP的,分配都是以10.开头的内网IP,如果这些机器访问的话获取一定是内网IP吧?还有这些客户端的外网IP怎么获取?(它们也可能连接外网,也应该有外网IP啊)