Report this

What is the reason for this report?

Server receiving hit from this IP Address "::ffff:127.0.0.1". Why is that and how to resolve this?

Posted on April 28, 2017
ok91

By ok91

I have a MEAN Stack application deployed on a server and I am using Nginx as proxy server to handle the request and redirect to application’s particular port.

I wrote a short script in node.js which fetches IP and location of the users visiting my website. I can see the searched queries and usage of my API from external users and are same as those I can see via Google Analytics.

But I am also getting a strange hit to my server (and API links) from the IP address “::ffff:127.0.0.1”. Why is that? Is that because of Nginx? How can I resolve this? Is this even an actual user or what?

Someone suggested that it might because of the Monitoring tool installed on your server. Can this be the reason as well or its something else?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

@ok91

::ffff:127.0.0.1 is the IPv6 version of an IPv4 IP address, just to clarify.

What does your current NGINX server block look like? (the one that has the proxy configuration)

I solved it with:

set $remote_addr_ipv4 $remote_addr;
if ($remote_addr ~ ^\:\:ffff\:(.+)$) {
    set $remote_addr_ipv4 $1;
}

set $proxy_add_x_forwarded_for_ipv4 $proxy_add_x_forwarded_for;
if ($proxy_add_x_forwarded_for ~ ^\:\:ffff\:(.+)$) {
    set $proxy_add_x_forwarded_for_ipv4 $1;
}

proxy_set_header    X-Forwarded-For    $proxy_add_x_forwarded_for_ipv4;
proxy_set_header    X-Real-IP          $remote_addr_ipv4;

Regards.

I have this problem also. The only IP that shows up for me is ::ffff:127.0.0.1 with no exceptions. I pasted in your code but there is no change.

Any ideas how to solve? My nginx config is otherwise very basic, having only the absolute essentials.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.