Nginx 使用 cloudflare 反向 DNS

Nginx 使用 cloudflare 反向 DNS

https://www.nginx.com/resources/wiki/modules/rdns/

https://github.com/flant/nginx-http-rdns

如何讓 nginx-http-rdns 模組與 cloudflare 免費 DDoS 防護配合使用?我希望使用這個模組來驗證搜尋引擎機器人(問題#10有驗證機器人的方法)。但尚不清楚如何使該模組與 cloudflare DDoS 配合使用(問題 #19 - 有一個 stackoverflow 範例)。有人可以幫忙嗎?或者也許有一種方法可以在沒有這個模組的情況下做到這一點?

例子: https://stackoverflow.com/questions/62445810/nginx-http-rdns-with-cloudflare

答案1

你會使用真實唇形模組將客戶端的 IP 位址替換為 CloudFlare 的位址。這發生在第一個階段在進行任何其他操作之前,先進行處理。然後,RDNS 模組將正常運作並查看客戶端的 IP 位址而不是 CloudFlare 的 IP 位址。

範例配置(IP範圍可能已經過時;我需要檢查一下):

set_real_ip_from 103.21.244.0/22;
set_real_ip_from 103.22.200.0/22;
set_real_ip_from 103.31.4.0/22;
set_real_ip_from 104.16.0.0/12;
set_real_ip_from 108.162.192.0/18;
set_real_ip_from 131.0.72.0/22;
set_real_ip_from 141.101.64.0/18;
set_real_ip_from 162.158.0.0/15;
set_real_ip_from 172.64.0.0/13;
set_real_ip_from 173.245.48.0/20;
set_real_ip_from 188.114.96.0/20;
set_real_ip_from 190.93.240.0/20;
set_real_ip_from 197.234.240.0/22;
set_real_ip_from 198.41.128.0/17;
set_real_ip_from 2400:cb00::/32;
set_real_ip_from 2405:8100::/32;
set_real_ip_from 2405:b500::/32;
set_real_ip_from 2606:4700::/32;
set_real_ip_from 2803:f800::/32;
set_real_ip_from 2c0f:f248::/32;
set_real_ip_from 2a06:98c0::/29;
real_ip_header CF-Connecting-IP;

相關內容