模块 ngx_http_realip_module 以及如何 set_real_ip_from

模块 ngx_http_realip_module 以及如何 set_real_ip_from

我有一个关于 ngx_http_realip_module 模块的基本问题。我查看了文档我看到了这个例子:

set_real_ip_from  192.168.1.0/24;
set_real_ip_from  192.168.2.1;
set_real_ip_from  2001:0db8::/32;
real_ip_header    X-Forwarded-For;
real_ip_recursive on;

我还了解这些是:

real_ip_header X-Forwarded-For;
real_ip_recursive on;
set_real_ip_from <your VPC IPV4 CIDR here>;
set_real_ip_from <your VPC IPV6 CIDR here>;

我的问题是:如果我用于连接服务器的 IPV4 是:123.12.12.123。我该从哪里获取后面的数字 /24,使其成为:123.12.12.123/24?同样的问题也适用于 IPV6。

答案1

192.168.1.0/24CIDR 表示法。/24表示网络掩码中的位数。/24对应于网络掩码255.255.255.0。请参阅CIDR 表示法文章了解详情。

相关内容