// FASTLY / UFW
Fastly · UFW
UFW (Uncomplicated Firewall) shell script for Fastly. 21 CIDRs, refreshed daily.
// ufw_fastly_allow.sh
#!/bin/bash # Fastly IP Ranges # Updated: 2026-02-11 15:35:31 # 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 fastly ufw allow from 23.235.32.0/20 ufw allow from 43.249.72.0/22 ufw allow from 103.244.50.0/24 ufw allow from 103.245.222.0/23 ufw allow from 103.245.224.0/24 ufw allow from 104.156.80.0/20 ufw allow from 140.248.64.0/18 ufw allow from 140.248.128.0/17 ufw allow from 146.75.0.0/17 ufw allow from 151.101.0.0/16 ufw allow from 157.52.64.0/18 ufw allow from 167.82.0.0/17 ufw allow from 167.82.128.0/20 ufw allow from 167.82.160.0/20 ufw allow from 167.82.224.0/20 ufw allow from 172.111.64.0/18 … (5 more lines)
// ufw_fastly_deny.sh
#!/bin/bash # Fastly IP Ranges # Updated: 2026-02-11 15:35:31 # 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 fastly ufw deny from 23.235.32.0/20 ufw deny from 43.249.72.0/22 ufw deny from 103.244.50.0/24 ufw deny from 103.245.222.0/23 ufw deny from 103.245.224.0/24 ufw deny from 104.156.80.0/20 ufw deny from 140.248.64.0/18 ufw deny from 140.248.128.0/17 ufw deny from 146.75.0.0/17 ufw deny from 151.101.0.0/16 ufw deny from 157.52.64.0/18 ufw deny from 167.82.0.0/17 ufw deny from 167.82.128.0/20 ufw deny from 167.82.160.0/20 ufw deny from 167.82.224.0/20 ufw deny from 172.111.64.0/18 … (5 more lines)