I want to get the ip address whoever is registering in my site. How to do this in ASPNET. I used the following code, but, it is not getting the proper IP Address
string ipaddress = Request.UserHostAddress;
|
|
You can use this method to get the
|
||||
|
|
|
HTTP_X_FORWARDED_FOR should be used BUT it can return multiple IP addresses separated by a comma. See this page. So you should always check it. I personally use the Split function.
|
||||
|
|
If a client is connecting through a transparent non-anonymous proxy, you can get their address from:
which can return null or "unknown" if the IP can't be obtained that way.
However, if the request comes from an anonymous proxy, then it's not possible to directly obtain the IP of the client. That's why they call those proxies anonymous. |
|||
|
|
|
In a situation where you use the IP address for security you should be aware of your infrastructure. If you are using a proxy between your web server and your clients that sets the header, you should be able to trust the last address. Then you use the code like Muhammed suggested with an update to always get the last IP address from the forward header (See code below) If you do not use a proxy, beware that teh X-Forwarded-For header is very easy to spoof. I suggest you ignore it then unless you have a clear reason why not to. I updated Muhammed Akhtar's code as follows to allow you to choose:
This Wikipedia article explains the risks more thoroughly. |
|||
|
|