<返回更多

nginx使用set_real_ip_from获取用户真实IP

2019-08-12    
加入收藏
后端nginx使用set_real_ip_from获取用户真实IP

 

使用Nginx自带模块realip获取用户IP地址

yum或者apt安装的都会默认有这个模块

真实服务器nginx配置

 server {
 listen 80;
 server_name www.qq.com;
 access_log /data/logs/nginx/www.qq.com.access.log main;
 
 index index.php index.html index.html;
 root /data/site/www.qq.com;
 
 location /
 {
 root /data/site/www.qq.com;
 }
 location = /getRealip.php
 {
 set_real_ip_from 192.168.50.0/24;
 set_real_ip_from 61.22.22.22;
 set_real_ip_from 121.207.33.33;
 set_real_ip_from 127.0.0.1;
 real_ip_header X-Forwarded-For;
 real_ip_recursive on;
 fastcgi_pass unix:/var/run/phpfpm.sock;
 fastcgi_index index.php;
 include fastcgi.conf;
 }
 }

getRealip.php内容

 <?php
 $ip = $_SERVER['REMOTE_ADDR'];
 echo $ip; 
 ?>

访问www.qq.com/getRealip.php,返回:

 120.22.11.11
 

如果注释 real_ip_recursive on或者 real_ip_recursive off

访问www.qq.com/getRealip.php,返回:

121.207.33.33

很不幸,获取到了中继的IP,real_ip_recursive的效果看明白了吧.

120.22.11.11,61.22.22.22,121.207.33.33,192.168.50.121
 

在real_ip_recursive on的情况下

61.22.22.22,121.207.33.33,192.168.50.121都出现在set_real_ip_from中,仅仅120.22.11.11没出现,那么他就被认为是用户的ip地址,并且赋值到remote_addr变量

在real_ip_recursive off或者不设置的情况下

192.168.50.121出现在set_real_ip_from中,排除掉,接下来的ip地址便认为是用户的ip地址

如果仅仅如下配置:

 set_real_ip_from 192.168.50.0/24;
 set_real_ip_from 127.0.0.1;
 real_ip_header X-Forwarded-For;
 real_ip_recursive on;

访问结果如下:

 121.207.33.33

总结:real_ip_recursive on 这个参数一定要打开才能获取到真实用户ip

声明:本站部分内容来自互联网,如有版权侵犯或其他问题请与我们联系,我们将立即删除或处理。
▍相关推荐
更多资讯 >>>