// AZURE / UFW
Azure · UFW
UFW (Uncomplicated Firewall) shell script for Azure. 95,335 CIDRs, refreshed daily.
// ufw_azure_allow.sh
#!/bin/bash # Azure IP Ranges # Updated: 2026-08-26 02:36:16 # 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 azure ufw allow from 4.144.0.0/12 ufw allow from 4.160.0.0/11 ufw allow from 4.192.0.0/10 ufw allow from 9.129.0.0/16 ufw allow from 9.141.0.0/16 ufw allow from 9.160.0.0/16 ufw allow from 9.163.0.0/16 ufw allow from 9.169.0.0/16 ufw allow from 9.205.0.0/16 ufw allow from 9.223.0.0/16 ufw allow from 9.234.0.0/15 ufw allow from 13.64.0.0/13 ufw allow from 13.72.64.0/18 ufw allow from 13.72.192.0/18 ufw allow from 13.73.0.0/18 ufw allow from 13.73.96.0/19 … (2132 more lines)
// ufw_azure_deny.sh
#!/bin/bash # Azure IP Ranges # Updated: 2026-08-26 02:36:17 # 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 azure ufw deny from 4.144.0.0/12 ufw deny from 4.160.0.0/11 ufw deny from 4.192.0.0/10 ufw deny from 9.129.0.0/16 ufw deny from 9.141.0.0/16 ufw deny from 9.160.0.0/16 ufw deny from 9.163.0.0/16 ufw deny from 9.169.0.0/16 ufw deny from 9.205.0.0/16 ufw deny from 9.223.0.0/16 ufw deny from 9.234.0.0/15 ufw deny from 13.64.0.0/13 ufw deny from 13.72.64.0/18 ufw deny from 13.72.192.0/18 ufw deny from 13.73.0.0/18 ufw deny from 13.73.96.0/19 … (2132 more lines)