首頁 > 軟體

網站如何通過nginx設定黑/白名單IP限制及國家城市IP存取限制

2022-07-19 18:04:53

一、黑/白名單IP限制存取設定

nginx設定黑白名單有好幾種方式,這裡只介紹常用的兩種方法。

1、第一種方法:allow、deny

deny和allow指令屬於ngx_http_access_module,nginx預設載入此模組,所以可直接使用。

這種方式,最簡單,最直接。設定類似防火牆iptable,使用方法:

直接組態檔中新增:

#白名單設定,allow後面為可存取IP 
location / {
     allow 123.13.123.12;
     allow 23.53.32.1/100;
     deny  all;
}

#黑名單設定,deny後面接限制的IP,為什麼不加allow all? 因為這個預設是開啟的 
location / {
     deny 123.13.123.12;
}

#白名單,特定目錄存取限制
location /tree/list {
     allow 123.13.123.12;
     deny  all;
}

或者通過讀取檔案IP設定白名單

location /{
    include /home/whitelist.conf;
    #預設位置路徑為/etc/nginx/ 下,
    #如直接寫include whitelist.conf,則只需要在/etc/nginx目錄下建立whitelist.conf
    deny all;
}

在/home/目錄下建立whitelist.conf,並寫入需要加入白名單的IP,新增完成後檢視如下:

cat /home/whitelist.conf

#白名單IP
allow 10.1.1.10;
allow 10.1.1.11;

白名單設定完成,黑名單設定方法一樣。

2:第二種方法,ngx_http_geo_module

預設情況下,一般nginx是有加該模組的,ngx_http_geo_module:官方檔案,引數需設定在位置在http模組中。

此模組可設定IP限制,也可設定國家地區限制。位置在server模組外即可。

語法範例:

組態檔直接新增

geo $ip_list {
    default 0;
    #設定預設值為0
    192.168.1.0/24 1;
    10.1.0.0/16    1;
}
server {
    listen       8081;
    server_name  192.168.152.100;
    
    location / {
        root   /var/www/test;
		index  index.html index.htm index.php;
		if ( $ip_list = 0 ) {
		#判斷預設值,如果值為0,可存取,這時上面新增的IP為黑名單。
		#白名單,將設定$ip_list = 1,這時上面新增的IP為白名單。
		proxy_pass http://192.168.152.100:8081;
    }

同樣可通過讀取檔案IP設定

geo $ip_list {
    default 0;
    #設定預設值為0
    include ip_white.conf;
}
server {
    listen       8081;
    server_name  192.168.152.100;
    
    location / {
        root   /var/www/test;
		index  index.html index.htm index.php;
		if ( $ip_list = 0 ) {
			return 403;
			#限制的IP返回值為403,也可以設定為503,504其他值。
			#建議設定503,504這樣返回的頁面不會暴露nginx相關資訊,限制的IP看到的資訊只顯示伺服器錯誤,無法判斷真正原因。
    }

在/etc/nginx目錄下建立ip_list.conf,新增IP完成後,檢視如下:

cat /etc/nginx/ip_list.conf

192.168.152.1 1;
192.168.150.0/24 1;

設定完成,ip_list.conf的IP為白名單,不在名單中的,直接返回403頁面。黑名單設定方法相同。

3、ngx_http_geo_module 負載均衡(擴充套件)

ngx_http_geo_module,模組還可以做負載均衡使用,如web叢集在不同地區都有伺服器,某個地區IP段,負載均衡至存取某個地區的伺服器。方式類似,IP後面加上自定義值,不僅僅數位,如US,CN等字母。

範例:

如果三臺伺服器:122.11.11.11,133.11.12.22,144.11.11.33

geo $country {
    default default;
    111.11.11.0/24   uk;
    #IP段定義值uk
    111.11.12.0/24   us;
    #IP段定義值us
    }
upstream  uk.server {
    erver 122.11.11.11:9090;
    #定義值uk的IP直接存取此伺服器
} 

upstream  us.server {
    server 133.11.12.22:9090;
    #定義值us的IP直接存取此伺服器
}

upstream  default.server {
    server 144.11.11.33:9090;
    #預設的定義值default的IP直接存取此伺服器
}
 
server {
    listen    9090;
    server_name 144.11.11.33;

    location / {
      root  /var/www/html/;
      index index.html index.htm;
     }
 }

然後在

二、國家地區IP限制存取

有些第三方也提供設定,如cloudflare,設定更簡單,防火牆規則裡設定。這裡講講nginx的設定方法。

1:安裝ngx_http_geoip_module模組

ngx_http_geoip_module:官方檔案,引數需設定在位置在http模組中。

nginx預設情況下不構建此模組,應使用 --with-http_geoip_module 設定引數啟用它。

對於ubuntu系統來說,直接安裝 nginx-extras元件,包括幾乎所有的模組。

sudo apt install nginx-extras

對於centos系統,安裝模組。

yum install nginx-module-geoip

2、下載 IP 資料庫

此模組依賴於IP資料庫,所有資料在此資料庫中讀取,所有還需要下載ip庫(dat格式)。

MaxMind 提供了免費的 IP 地域資料庫,壞訊息是MaxMind 官方已經停止支援dat格式的ip庫。

在其他地方可以找到dat格式的檔案,或者老版本的,當然資料不可能最新,多少有誤差。

第三方下載地址:https://www.miyuru.lk/geoiplegacy

下載同時包括Ipv4和Ipv6的country、city版本。

#下載國家IP庫,解壓並移動到nginx組態檔目錄,
sudo wget https://dl.miyuru.lk/geoip/maxmind/country/maxmind.dat.gz
gunzip maxmind.dat.gz
sudo mv maxmind.dat /etc/nginx/GeoCountry.dat

sudo wget https://dl.miyuru.lk/geoip/maxmind/city/maxmind.dat.gz
gunzip maxmind.dat.gz
sudo mv maxmind.dat /etc/nginx/GeoCity.dat

3、設定nginx

範例:

geoip_country /etc/nginx/GeoCountry.dat;
geoip_city /etc/nginx/GeoCity.dat;

server {
    listen  80;
    server_name 144.11.11.33;

    location / {
      root  /var/www/html/;
      index index.html index.htm;
      if ($geoip_country_code = CN) {
  			return 403;
 		#中國地區,拒絕存取。返回403頁面
		}
  	}
 }

這裡,地區國家基礎設定就完成了。

Geoip其他引數:

國家相關引數:
$geoip_country_code #兩位字元的英文國家碼。如:CN, US
$geoip_country_code3 #三位字元的英文國家碼。如:CHN, USA
$geoip_country_name #國家英文全稱。如:China, United States
城市相關引數:
$geoip_city_country_code #也是兩位字元的英文國家碼。
$geoip_city_country_code3 #上同
$geoip_city_country_name #上同.
$geoip_region #這個經測試是兩位數的數位,如杭州是02, 上海是 23。但是沒有搜到相關資料,希望知道的朋友留言告之。
$geoip_city #城市的英文名稱。如:Hangzhou
$geoip_postal_code #城市的郵政編碼。經測試,國內這欄位為空
$geoip_city_continent_code #不知什麼用途,國內好像都是AS
$geoip_latitude #緯度
$geoip_longitude #經度

總結

到此這篇關於網站如何通過nginx設定黑/白名單IP限制及國家城市IP存取限制的文章就介紹到這了,更多相關nginx黑/白名單IP限制設定內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com