cloud-ip-ranges:~$

CacheFly logo CacheFly IP Ranges

Download current IP ranges (CIDRs) used by the CacheFly cloud infrastructure.

Provider Information

Category
CDN & Edge
Official Website
https://www.cachefly.com
Total IP Ranges
16
16 IPv4 · 0 IPv6
Last Updated
Total Downloads
9

Download Options

Choose your preferred format. All downloads are permalinks that always provide the latest data.

IP Ranges

First 16 of 16 ranges. Download the full list above, or search for a specific IP.

CIDR Type
50.31.148.0/24 ipv4
50.31.196.0/24 ipv4
50.31.197.0/24 ipv4
66.225.208.0/24 ipv4
66.225.222.0/24 ipv4
66.225.243.0/24 ipv4
75.102.32.0/24 ipv4
75.102.42.0/24 ipv4
167.88.159.0/24 ipv4
216.246.19.0/24 ipv4
216.246.40.0/24 ipv4
216.246.44.0/24 ipv4
216.246.100.0/24 ipv4
216.246.104.0/24 ipv4
216.246.118.0/24 ipv4
216.246.119.0/24 ipv4

Usage Examples - Blocking CacheFly IPs

Download the IP ranges

# Download with curl
curl -O https://cloud-ip-ranges.com/download/cachefly.txt

# Or download with wget
wget https://cloud-ip-ranges.com/download/cachefly.txt

Block with iptables (Linux firewall)

# Download and block CacheFly IPs with iptables
wget -O cachefly_ips.txt https://cloud-ip-ranges.com/download/cachefly.txt
while read ip; do
  iptables -A INPUT -s $ip -j DROP
  iptables -A OUTPUT -d $ip -j DROP
done < cachefly_ips.txt

Block with UFW (Ubuntu/Debian firewall)

# Download and block CacheFly IPs with UFW
wget -O cachefly_ips.txt https://cloud-ip-ranges.com/download/cachefly.txt
while read ip; do
  ufw deny from $ip
  ufw deny to $ip
done < cachefly_ips.txt

Block with fail2ban (intrusion prevention)

# Create fail2ban filter for CacheFly
sudo tee /etc/fail2ban/filter.d/cachefly-block.conf << EOF
[Definition]
failregex = ^.*$
ignoreregex =
EOF

# Create jail configuration
sudo tee /etc/fail2ban/jail.d/cachefly-block.conf << EOF
[cachefly-block]
enabled = true
filter = cachefly-block
action = iptables-allports[name=cachefly]
logpath = /tmp/cachefly_ips.txt
findtime = 1
bantime = -1
maxretry = 1
EOF

# Download IP list and restart fail2ban
wget -O /tmp/cachefly_ips.txt https://cloud-ip-ranges.com/download/cachefly.txt
sudo systemctl restart fail2ban

Block with pfSense/OPNsense (FreeBSD firewall)

# Create alias table for CacheFly IPs
# 1. Download the IP list
wget -O cachefly_ips.txt https://cloud-ip-ranges.com/download/cachefly.txt

# 2. In pfSense/OPNsense web interface:
# - Go to Firewall > Aliases
# - Create new alias named "CACHEFLY_BLOCK"
# - Type: Network(s)
# - Import the downloaded file
#
# 3. Create firewall rule:
# - Go to Firewall > Rules > WAN
# - Add rule: Action=Block, Source=CACHEFLY_BLOCK

About CacheFly IP Ranges

These IP ranges are sourced directly from CacheFly's official feeds and are updated regularly to ensure accuracy. The data includes IPv4 and IPv6 ranges used by CacheFly's infrastructure worldwide. Last update was 7 months ago.