// ALIBABA / UFW
Alibaba · UFW
UFW (Uncomplicated Firewall) shell script for Alibaba. 2,304 CIDRs, refreshed daily.
// ufw_alibaba_allow.sh
#!/bin/bash # Alibaba IP Ranges # Updated: 2026-06-13 03:20:01 # Source: https://github.com/rezmoss/cloud-provider-ip-addresses # License: https://github.com/rezmoss/cloud-provider-ip-addresses/LICENSE # This file is generated automatically. Do not edit it directly. # Updates daily at 00:00 UTC # UFW allow rules for alibaba ufw allow from 5.181.224.0/23 ufw allow from 8.128.4.0/22 ufw allow from 8.128.4.0/23 ufw allow from 8.128.6.0/23 ufw allow from 8.128.32.0/19 ufw allow from 8.128.32.0/20 ufw allow from 8.128.48.0/20 ufw allow from 8.128.64.0/20 ufw allow from 8.128.64.0/21 ufw allow from 8.128.72.0/21 ufw allow from 8.128.80.0/20 ufw allow from 8.128.80.0/21 ufw allow from 8.128.88.0/21 ufw allow from 8.128.96.0/21 ufw allow from 8.128.96.0/22 ufw allow from 8.128.100.0/22 … (2288 more lines)
// ufw_alibaba_deny.sh
#!/bin/bash # Alibaba IP Ranges # Updated: 2026-06-13 03:20:01 # Source: https://github.com/rezmoss/cloud-provider-ip-addresses # License: https://github.com/rezmoss/cloud-provider-ip-addresses/LICENSE # This file is generated automatically. Do not edit it directly. # Updates daily at 00:00 UTC # UFW deny rules for alibaba ufw deny from 5.181.224.0/23 ufw deny from 8.128.4.0/22 ufw deny from 8.128.4.0/23 ufw deny from 8.128.6.0/23 ufw deny from 8.128.32.0/19 ufw deny from 8.128.32.0/20 ufw deny from 8.128.48.0/20 ufw deny from 8.128.64.0/20 ufw deny from 8.128.64.0/21 ufw deny from 8.128.72.0/21 ufw deny from 8.128.80.0/20 ufw deny from 8.128.80.0/21 ufw deny from 8.128.88.0/21 ufw deny from 8.128.96.0/21 ufw deny from 8.128.96.0/22 ufw deny from 8.128.100.0/22 … (2288 more lines)