1

Possible Duplicate:
Make my IP address appear to be from another country

Several friends said they have done it with a proxy address. Is there a quick/easy way of doing it without having to purchase advertized software? I am able to get originating IP address with $_SERVER['REMOTE_ADDR']

Joe R.
  • 461

3 Answers3

4

It is impossible to spoof your ip address over the open internet over a TCP connection due to the Three Way Handshake. PHP's $_SERVER['REMOTE_ADDR'] pulls the ip address directly from apaches tcp socket and there for cannot be influenced. It is likely that you are looking for a proxy server.

Rook
  • 319
1

This probably belongs over on ServerFault but check out websites like:

HideMyAss.com

Just realize you are using a public proxy so don't send anything sensitive.

1

You can use TOR

user1190
  • 650