You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In New Relic, we use real_ip to identify the origin of requests. However, 127.0.0.1 is the loopback IP address and is invalid as a real_ip. Using it obscures the true origin of the request, creates confusion, and could potentially mask security breaches.
In New Relic, we use
real_ip
to identify the origin of requests. However,127.0.0.1
is the loopback IP address and is invalid as areal_ip
. Using it obscures the true origin of the request, creates confusion, and could potentially mask security breaches.How to reproduce
For entry like this from CloudFront
where
c-ip
is143.244.44.134
butx-forwarded-for
is127.0.0.1
.It appears as this in the catalog-nginx app.
where
127.0.0.1
appears as the left most entry in thex_forwarded_for:"127.0.0.1, 143.244.44.134, 64.252.66.89, 127.0.0.1"
,Expected behavior
real_ip is
143.244.44.134
Actual behavior
real_ip is
127.0.0.1
Sketch
[Notes or a checklist reflecting our understanding of the selected approach]
The text was updated successfully, but these errors were encountered: