// CACHEFLY / UFW
cachefly · UFW
UFW (Uncomplicated Firewall) shell script for cachefly. 16 CIDRs, refreshed daily.
// ufw_cachefly_allow.sh
#!/bin/bash # Cachefly IP Ranges # Updated: 2026-07-12 03:46:19 # 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 cachefly ufw allow from 50.31.148.0/24 ufw allow from 50.31.196.0/23 ufw allow from 66.225.208.0/24 ufw allow from 66.225.222.0/24 ufw allow from 66.225.243.0/24 ufw allow from 75.102.32.0/24 ufw allow from 75.102.42.0/24 ufw allow from 167.88.159.0/24 ufw allow from 216.246.19.0/24 ufw allow from 216.246.40.0/24 ufw allow from 216.246.44.0/24 ufw allow from 216.246.100.0/24 ufw allow from 216.246.104.0/24 ufw allow from 216.246.118.0/23
// ufw_cachefly_deny.sh
#!/bin/bash # Cachefly IP Ranges # Updated: 2026-07-12 03:46:19 # 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 cachefly ufw deny from 50.31.148.0/24 ufw deny from 50.31.196.0/23 ufw deny from 66.225.208.0/24 ufw deny from 66.225.222.0/24 ufw deny from 66.225.243.0/24 ufw deny from 75.102.32.0/24 ufw deny from 75.102.42.0/24 ufw deny from 167.88.159.0/24 ufw deny from 216.246.19.0/24 ufw deny from 216.246.40.0/24 ufw deny from 216.246.44.0/24 ufw deny from 216.246.100.0/24 ufw deny from 216.246.104.0/24 ufw deny from 216.246.118.0/23