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']

link|improve this question

75% accept rate
feedback

migrated from stackoverflow.com Aug 22 '10 at 5:23

This question came from our site for professional and enthusiast programmers.

closed as exact duplicate by random Aug 23 '10 at 0:47

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 4 down vote accepted

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.

link|improve this answer
feedback

You can use TOR

link|improve this answer
feedback

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.

link|improve this answer
Thanks for link. Very good. :) – user32309 Aug 22 '10 at 5:13
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.