you know we have Request.UserHostAddress to get ip address in asp.net ,but this is usually user's ISP ip address not exactly user's machine ip who for example clicked a link.
how can i get real IP Address?
for example in stackoverflow user profile it is: "Last account activity: 4 hours ago from 86.123.127.8" but my machine ip address is a bit different.
how stackoverflow gets this address?
in some web systems there is a ip check for some purposes for example: with a certian ip in every 24 hours just the use can have only 5 clicks on download links? this ip address should be unique. not for a ISP that has a huge range of clients and internet users.
did i unrdestand well?
|
1
|
|
||||||
|
|
|
As others have said you can't do what you are asking. If you describe the problem you are trying to solve maybe someone can help? E.g. are you trying to uniquely identify your users? Could you use a cookie, or the session ID perhaps instead of the IP address? Edit The address you see on the server shouldn't be the ISP's address, as you say that would be a huge range. The address for a home user on broadband will be the address at their router, so every device inside the house will appear on the outside to be the same, but the router uses NAT to ensure that traffic is routed to each device correctly. For users accessing from an office environment the address may well be the same for all users. Sites that use IP address for ID run the risk of getting it very wrong - the examples you give are good ones and they often fail. For example my office is in the UK, the breakout point (where I "appear" to be on the internet) is in another country where our main IT facility is, so from my office my IP address appears to be not in the UK. For this reason I can't access UK only web content, such as the BBC iPlayer (and my employer is probably very happy about this:-) ). AT any given time there would be hundreds, or even thousands of people at my company who appear to be accessing the web from the same IP address. When you are writing server code you can never be sure what the IP address you see is refering to.In fact some users like it this way. Some people deliberately use an annoymising proxy to further confound you, for security or privacy reasons they route their web traffic via a proxy so that you won't know who or where that user is. When you say your machine address is different to the IP address shown on StackOverflow, how are you finding out your machine address? If you are just looking locally using This Wikipedia link on NAT will provide you some background on this. |
||||||||||||
|
|
|
What else do you consider the user IP address? If you want the IP address of the network adapter, I'm afraid there's no possible way to do it in a Web app. If your user is behind NAT or other stuff, you can't get the IP either. Update: While there are Web sites that use IP to limit the user (like rapidshare), they don't work correctly in NAT environments. |
|||
|
|
|
|
|
|||
|
|
|
|
IP addresses are part of the Network layer in the "seven-layer stack". The Network layer can do whatever it wants to do with the IP address. That's what happens with a proxy server, NAT, relay, or whatever. The Application layer should not depend on the IP address in any way. In particular, an IP Address is not meant to be an identifier of anything other than the idenfitier of one end of a network connection. As soon as a connection is closed, you should expect the IP address (of the same user) to change. |
||
|
|
