// AWS / UFW
AWS · UFW
UFW (Uncomplicated Firewall) shell script for AWS. 15,877 CIDRs, refreshed daily.
// ufw_aws_allow.sh
#!/bin/bash # Aws IP Ranges # Updated: 2026-05-26 03:19:23 # 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 aws ufw allow from 3.4.12.4/32 ufw allow from 3.5.140.0/22 ufw allow from 15.190.244.0/22 ufw allow from 15.230.15.29/32 ufw allow from 15.230.15.76/31 ufw allow from 15.230.221.0/24 ufw allow from 15.248.168.0/21 ufw allow from 23.254.120.0/21 ufw allow from 35.180.0.0/16 ufw allow from 51.85.0.0/16 ufw allow from 52.93.153.170/32 ufw allow from 52.93.178.234/32 ufw allow from 52.93.244.0/24 ufw allow from 52.94.76.0/22 ufw allow from 52.95.36.0/22 ufw allow from 52.219.170.0/23 … (15861 more lines)
// ufw_aws_deny.sh
#!/bin/bash # Aws IP Ranges # Updated: 2026-05-26 03:19:23 # 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 aws ufw deny from 3.4.12.4/32 ufw deny from 3.5.140.0/22 ufw deny from 15.190.244.0/22 ufw deny from 15.230.15.29/32 ufw deny from 15.230.15.76/31 ufw deny from 15.230.221.0/24 ufw deny from 15.248.168.0/21 ufw deny from 23.254.120.0/21 ufw deny from 35.180.0.0/16 ufw deny from 51.85.0.0/16 ufw deny from 52.93.153.170/32 ufw deny from 52.93.178.234/32 ufw deny from 52.93.244.0/24 ufw deny from 52.94.76.0/22 ufw deny from 52.95.36.0/22 ufw deny from 52.219.170.0/23 … (15861 more lines)