0

I'm working with ASP.NET and I'm using Request.ServerVariables("REMOTE_ADDR") to get the Client's IP which seems to be like this 200.107.XXX.XXX.

I'd like to know if is possible to get the "LOCAL OR LAN" Client's IP (i.e. 192.168.1.XXX)

Jason Aller
  • 3,541
  • 28
  • 38
  • 38
Walter Colchado
  • 337
  • 1
  • 6
  • 16
  • 1
    No such information exists as known to the server - that information is "lost" (it is never sent upstream). – user2246674 Sep 12 '13 at 22:00
  • Have a look at [this SO question](http://stackoverflow.com/questions/5371020/how-can-a-server-find-real-client-ip-address?rq=1) – peterG Sep 12 '13 at 22:18

1 Answers1

1

No, that information is behind the corporate proxy and doesn't get surfaced to external systems.

Mister Epic
  • 16,295
  • 13
  • 76
  • 147