Estou coçando a cabeça há algumas horas e queria ver se alguém pode ajudar.
1) Eu tenho um balanceador de carga com 6 servidores no back-end.
2) Os servidores back-end são Nginx e para obter os endereços IP reais dos visitantes, tudo o que tenho que fazer é o seguinte em cada instalação do Nginx e eu consigo obter o endereço IP do cliente real de cada visitante. / p>
set_real_ip_from 192.168.255.0/24; <-- to handle the load balancer IP
real_ip_header X-Forwarded-For;
3) Agora eu instalei o Varnish na frente de cada Nginx rodando no 127.0.0.1 fazendo cache e por algum motivo agora o Nginx não vê mais os endereços Ip do cliente real vindo do LoadBalancer - > Verniz - > Nginx
Está imprimindo o seguinte:
endereço IP:
192.168.255.9 < - este deve ser o endereço IP do cliente real e não o 192.168 (supondo que o endereço IP do balanceador de carga esteja sendo impresso)
Endereço do host mais detalhado:
192.168.255.9
Muitos agradecem se você puder ajudar.
Dave
ATUALIZAÇÃO:
Sem verniz na equação, tenho os seguintes LB - > NGINX e dentro do NGINX o
seguintes existis
set_real_ip_from 192.168.255.0/24;
real_ip_header X-Forwarded-For;
Quando o NGINX registra o remote_addr, a primeira entrada abaixo imprime o endereço IP do cliente real
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
213.205.234.x - - [05/Sep/2012:09:42:08 -0700] "GET /2011/10/28/chicken-and-apples-in- honey-mustard-sauce/ HTTP/1.1" 200 18283 "-" "Mozilla/5.0 (Linux; U; Android 4.0.4; en-gb; GT-I9100 Build/IMM76D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" "213.205.234.x"
Com o verniz na equação LB - > Verniz - > NGINX
E dentro do NGINX eu mudei o set_real_ip_from para apontar para 127.0.0.1
set_real_ip_from 127.0.0.1;
real_ip_header X-Forwarded-For;
$ remote_addr no NGINX não imprime o endereço IP do cliente real:
192.168.255.9 - - [05/Sep/2012:09:46:41 -0700] "GET /2012/09/03/stuffed-baked-potatoes-deconstructed/ HTTP/1.1" 200 18159 "-" "Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; ADR6400L Build/FRG83D) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" "69.255.125.x, 192.168.255.9"
Como você pode ver acima, o $ remote_addr que está sendo impresso é o endereço IP do Load Balancer: 192.168.255.9 em vez do remote_addr do cliente. Embora o "$ http_x_forwarded_for" 'esteja imprimindo o endereço correto, eu acho: "69.255.125.x, 192.168.255.9". Meu objetivo é fazer com que o $ remote_addr contenha o endereço IP correto
Obrigado
Dave
ATUALIZAÇÃO:
Aqui está meu default.vcl de Varnish, comentou a parte mencionada por Shane, aqui está a saída atual do log de acesso do NGINX
127.0.0.1 - - [05/Sep/2012:11:16:43 -0700] "GET /wp-content/plugins/wp-pagenavi/pagenavi-css.css?ver=2.70 HTTP/1.1" 304 0 "http://mobilefoodblog.com/2011/10/28/chicken-and-apples-in-honey-mustard-sauce/" "Mozilla/5.0 (Linux; U; Android 2.3.5; en-us; SCH-I405 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" "67.168.209.192, 192.168.255.9"
# This is a basic VCL configuration file for varnish. See the vcl(7)
# man page for details on VCL syntax and semantics.
#
# Default backend definition. Set this to point to your content
# server.
#
backend default {
.host = "localhost";
.port = "8080";
}
sub detect_device {
# Define the desktop device
set req.http.X-Device = "desktop";
if (req.http.User-Agent ~ "iP(hone|od)" || req.http.User-Agent ~ "Android" || req.http.User-Agent ~ "iPad") {
# Define smartphones and tablets
set req.http.X-Device = "smart";
}
elseif (req.http.User-Agent ~ "SymbianOS" || req.http.User-Agent ~ "^BlackBerry" || req.http.User-Agent ~ "^SonyEricsson" || req.http.User-Agent ~ "^Nokia" || req.http.User-Agent ~ "^SAMSUNG" || req.http.User-Agent ~ "^LG") {
# Define every other mobile device
set req.http.X-Device = "other";
}
}
acl purge {
"localhost";
}
sub vcl_recv {
call detect_device;
# if (req.restarts == 0) {
# if (req.http.x-forwarded-for) {
# set req.http.X-Forwarded-For =
# req.http.X-Forwarded-For ", " client.ip;
# } else {
# set req.http.X-Forwarded-For = client.ip;
# }
# }
if (req.request == "PURGE") {
if (!client.ip ~ purge) {
error 405 "Not allowed.";
}
return(lookup);
}
if (req.url ~ "^/$") {
unset req.http.cookie;
}
}
sub vcl_hit {
if (req.request == "PURGE") {
set obj.ttl = 0s;
error 200 "Purged.";
}
}
sub vcl_miss {
if (req.request == "PURGE") {
error 404 "Not in cache.";
}
if (!(req.url ~ "wp-(login|admin)")) {
unset req.http.cookie;
}
if (req.url ~ "^/[^?]+.(jpeg|jpg|png|gif|ico|js|css|txt|gz|zip|lzma|bz2|tgz|tbz|html|htm)(\?.|)$") {
unset req.http.cookie;
set req.url = regsub(req.url, "\?.$", "");
}
if (req.url ~ "^/$") {
unset req.http.cookie;
}
}
sub vcl_fetch {
if (req.url ~ "^/$") {
unset beresp.http.set-cookie;
}
if (!(req.url ~ "wp-(login|admin)")) {
unset beresp.http.set-cookie;
}
}
sub vcl_hash {
set req.hash += req.url;
if (req.http.host) {
set req.hash += req.http.host;
} else {
set req.hash += server.ip;
}
# And then add the device to the hash (if its a mobile device)
if (req.http.X-Device ~ "smart" || req.http.X-Device ~ "other") {
set req.hash += req.http.X-Device;
}
return (hash);
}