Se sei sotto un bilanciamento del carico, Laravel's restituisce \Request::ip()
sempre l'IP del bilanciatore:
echo $request->ip();
// server ip
echo \Request::ip();
// server ip
echo \request()->ip();
// server ip
echo $this->getIp(); //see the method below
// clent ip
Questo metodo personalizzato restituisce l'ip client reale:
public function getIp(){
foreach (array('HTTP_CLIENT_IP', 'HTTP_X_FORWARDED_FOR', 'HTTP_X_FORWARDED', 'HTTP_X_CLUSTER_CLIENT_IP', 'HTTP_FORWARDED_FOR', 'HTTP_FORWARDED', 'REMOTE_ADDR') as $key){
if (array_key_exists($key, $_SERVER) === true){
foreach (explode(',', $_SERVER[$key]) as $ip){
$ip = trim($ip); // just to be safe
if (filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE) !== false){
return $ip;
}
}
}
}
}
Inoltre, ti suggerisco di stare molto attento usando il middleware del throttle di Laravel : usa quello di LaravelRequest::ip()
, quindi tutti i tuoi visitatori saranno identificati come lo stesso utente e raggiungerai il limite dell'acceleratore molto rapidamente. L'ho vissuto dal vivo e questo ha causato grossi problemi.
Per risolvere questo problema:
Illuminate \ Http \ Request.php
public function ip()
{
//return $this->getClientIp(); //original method
return $this->getIp(); // the above method
}
Ora puoi anche usare Request::ip()
, che dovrebbe restituire l'IP reale in produzione.