Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am writing code in PHP, and I would like to detect the client's IP address. I have been using $_SERVER['REMOTE_ADDR'].

It works usually... But sometimes I get the address 127.255.255.255, when clearly a user which was on a regular internet connection tried to connect the website. Is there a reason for that?

share|improve this question
what web server are you running? – El Barto Mar 11 '12 at 13:16
I am actually not sure, I am using webhubhosting.com. – user1255714 Mar 11 '12 at 13:29
You should check with them if they're using a proxy or something and why could you be getting a broadcast address (127.255.255.255) as the remote address of the client. As another user here said, the REMOTE_ADDR variable is set by the webserver which runs your PHP script using the IP address from which it's receiving the request. – El Barto Mar 11 '12 at 13:33

2 Answers

127.255.255.255 is a broadcast from you internal server (loopback)

If your sure it's an external user, you should check for code injection possibilities on your site.

share|improve this answer
but why would it work for some addresses and for others it doesn't? that's strange. – user1255714 Mar 11 '12 at 13:29
Do you have any RewriteRules in you .htaccess file using the [P] flag? You might be proxying some pages yourselves? – Bjørne Malmanger Mar 11 '12 at 13:38

To answer the question in the title: REMOTE_ADDR is set by the corresponding webserver and cannot be modified by the User (except by using Proxies etc.). It is determined from the incoming TCP connection before any HTTP takes place.

However, it might be obfuscated by some firewalls or proxies in the server's network.

Additionally confusing is that 127.255.255.255 is a broadcast address and should not be a source for an HTTP connection (which is TCP, which is Unicast only).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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