// AZURE / UFW
Azure · UFW
UFW (Uncomplicated Firewall) shell script for Azure. 106,887 CIDRs, refreshed daily.
// ufw_azure_allow.sh
#!/bin/bash # Azure IP Ranges # Updated: 2026-07-11 03:11:26 # 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/12 ufw allow from 4.176.0.0/13 ufw allow from 4.184.0.0/20 ufw allow from 4.184.56.0/21 ufw allow from 4.184.64.0/18 ufw allow from 4.184.128.0/17 ufw allow from 4.185.0.0/16 ufw allow from 4.186.0.0/15 ufw allow from 4.188.0.0/14 ufw allow from 4.192.0.0/13 ufw allow from 4.200.0.0/15 ufw allow from 4.202.0.0/16 ufw allow from 4.203.0.0/17 ufw allow from 4.203.128.0/19 ufw allow from 4.204.0.0/14 … (4571 more lines)
// ufw_azure_deny.sh
#!/bin/bash # Azure IP Ranges # Updated: 2026-07-11 03:11:27 # 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/12 ufw deny from 4.176.0.0/13 ufw deny from 4.184.0.0/20 ufw deny from 4.184.56.0/21 ufw deny from 4.184.64.0/18 ufw deny from 4.184.128.0/17 ufw deny from 4.185.0.0/16 ufw deny from 4.186.0.0/15 ufw deny from 4.188.0.0/14 ufw deny from 4.192.0.0/13 ufw deny from 4.200.0.0/15 ufw deny from 4.202.0.0/16 ufw deny from 4.203.0.0/17 ufw deny from 4.203.128.0/19 ufw deny from 4.204.0.0/14 … (4571 more lines)