// AWS / UFW
AWS · UFW
UFW (Uncomplicated Firewall) shell script for AWS. 16,259 CIDRs, refreshed daily.
// ufw_aws_allow.sh
#!/bin/bash # Aws IP Ranges # Updated: 2026-07-11 03:10:43 # 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 aws ufw allow from 1.178.1.0/24 ufw allow from 1.178.4.0/22 ufw allow from 1.178.8.0/22 ufw allow from 1.178.16.0/20 ufw allow from 1.178.64.0/23 ufw allow from 1.178.72.0/21 ufw allow from 1.178.86.0/24 ufw allow from 1.178.88.0/21 ufw allow from 1.178.100.0/22 ufw allow from 1.178.172.0/23 ufw allow from 1.178.174.0/24 ufw allow from 1.179.2.0/23 ufw allow from 1.179.14.0/23 ufw allow from 1.179.60.0/23 ufw allow from 1.179.101.0/24 ufw allow from 1.179.102.0/23 … (3757 more lines)
// ufw_aws_deny.sh
#!/bin/bash # Aws IP Ranges # Updated: 2026-07-11 03:10:43 # 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 aws ufw deny from 1.178.1.0/24 ufw deny from 1.178.4.0/22 ufw deny from 1.178.8.0/22 ufw deny from 1.178.16.0/20 ufw deny from 1.178.64.0/23 ufw deny from 1.178.72.0/21 ufw deny from 1.178.86.0/24 ufw deny from 1.178.88.0/21 ufw deny from 1.178.100.0/22 ufw deny from 1.178.172.0/23 ufw deny from 1.178.174.0/24 ufw deny from 1.179.2.0/23 ufw deny from 1.179.14.0/23 ufw deny from 1.179.60.0/23 ufw deny from 1.179.101.0/24 ufw deny from 1.179.102.0/23 … (3757 more lines)