【LanceZhang】ASP.NET獲取IP的6種方法

iDotNetSpace發表於2008-07-23

服務端:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gt//方法一
HttpContext.Current.Request.UserHostAddress; 

//方法二
HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];

//方法三
string strHostName = System.Net.Dns.GetHostName();
string clientIPAddress = System.Net.Dns.GetHostAddresses(strHostName).GetValue(0).ToString();

//方法四(無視代理)
HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"];

客戶端:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gt//方法五
var ip = '<!--#echo var="REMOTE_ADDR"--&gt';
alert(
"Your IP address is "+ip);

//方法六(無視代理)
function GetLocalIPAddress() 
【LanceZhang】ASP.NET獲取IP的6種方法

    
var obj = null
    
var rslt = ""
    
try 
【LanceZhang】ASP.NET獲取IP的6種方法    

        obj 
= new ActiveXObject("rcbdyctl.Setting"); 
        rslt 
= obj.GetIPAddress; 
        obj 
= null
    }
 
    
catch(e) 
【LanceZhang】ASP.NET獲取IP的6種方法    

        
// 
    }
 
     
    
return rslt; 
}
 

22日新增:

來自印度的MCT Maulik Patel提供了一種服務端的解決方案,很好:

<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtif(Context.Request.ServerVariables["HTTP_VIA"]!=null// using proxy
【LanceZhang】ASP.NET獲取IP的6種方法

     ip
=Context.Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString();  // Return real client IP.
}

else// not using proxy or can't get the Client IP
【LanceZhang】ASP.NET獲取IP的6種方法

     ip
=Context.Request.ServerVariables["REMOTE_ADDR"].ToString(); //While it can't get the Client IP, it will return proxy IP.
}


備註:

1. 有些代理是不會發給我們真實IP地址的

2. 有些客戶端會因為“header_access deny”的安全設定而不發給我們IP

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-407075/,如需轉載,請註明出處,否則將追究法律責任。

相關文章