// ALIBABA / UFW
Alibaba · UFW
UFW (Uncomplicated Firewall) shell script for Alibaba. 2,381 CIDRs, refreshed daily.
// ufw_alibaba_allow.sh
#!/bin/bash # Alibaba IP Ranges # Updated: 2026-07-25 03:14:49 # 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 02: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.32.0/19 ufw allow from 8.128.64.0/19 ufw allow from 8.128.96.0/20 ufw allow from 8.129.0.0/16 ufw allow from 8.130.0.0/15 ufw allow from 8.132.0.0/14 ufw allow from 8.136.0.0/13 ufw allow from 8.144.0.0/14 ufw allow from 8.148.0.0/19 ufw allow from 8.148.36.0/22 ufw allow from 8.148.41.0/24 ufw allow from 8.148.43.0/24 ufw allow from 8.148.64.0/18 ufw allow from 8.148.128.0/17 … (314 more lines)
// ufw_alibaba_deny.sh
#!/bin/bash # Alibaba IP Ranges # Updated: 2026-07-25 03:14:49 # 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 02: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.32.0/19 ufw deny from 8.128.64.0/19 ufw deny from 8.128.96.0/20 ufw deny from 8.129.0.0/16 ufw deny from 8.130.0.0/15 ufw deny from 8.132.0.0/14 ufw deny from 8.136.0.0/13 ufw deny from 8.144.0.0/14 ufw deny from 8.148.0.0/19 ufw deny from 8.148.36.0/22 ufw deny from 8.148.41.0/24 ufw deny from 8.148.43.0/24 ufw deny from 8.148.64.0/18 ufw deny from 8.148.128.0/17 … (314 more lines)