// AZURE / UFW
Azure · UFW
UFW (Uncomplicated Firewall) shell script for Azure. 103,021 CIDRs, refreshed daily.
// ufw_azure_allow.sh
#!/bin/bash # Azure IP Ranges # Updated: 2026-05-16 03:16:46 # 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 azure ufw allow from 4.145.74.52/30 ufw allow from 4.149.254.68/30 ufw allow from 4.150.239.212/30 ufw allow from 4.151.103.92/30 ufw allow from 4.171.31.152/30 ufw allow from 4.190.136.180/30 ufw allow from 4.200.251.84/30 ufw allow from 4.202.253.100/30 ufw allow from 4.206.229.96/30 ufw allow from 4.207.242.64/30 ufw allow from 4.216.204.200/30 ufw allow from 4.218.236.160/30 ufw allow from 4.219.249.220/30 ufw allow from 4.220.138.104/30 ufw allow from 4.232.48.104/30 ufw allow from 4.232.106.88/30 … (103005 more lines)
// ufw_azure_deny.sh
#!/bin/bash # Azure IP Ranges # Updated: 2026-05-16 03:16:46 # 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 azure ufw deny from 4.145.74.52/30 ufw deny from 4.149.254.68/30 ufw deny from 4.150.239.212/30 ufw deny from 4.151.103.92/30 ufw deny from 4.171.31.152/30 ufw deny from 4.190.136.180/30 ufw deny from 4.200.251.84/30 ufw deny from 4.202.253.100/30 ufw deny from 4.206.229.96/30 ufw deny from 4.207.242.64/30 ufw deny from 4.216.204.200/30 ufw deny from 4.218.236.160/30 ufw deny from 4.219.249.220/30 ufw deny from 4.220.138.104/30 ufw deny from 4.232.48.104/30 ufw deny from 4.232.106.88/30 … (103005 more lines)