Download current IP ranges (CIDRs) used by the StatusCake monitoring network.
Choose your preferred format. All downloads are permalinks that always provide the latest data.
First 25 of 183 ranges. Download the full list above, or search for a specific IP.
| CIDR | Type |
|---|---|
| 13.48.110.214/32 | ipv4 |
| 13.48.238.157/32 | ipv4 |
| 13.49.141.132/32 | ipv4 |
| 13.245.199.158/32 | ipv4 |
| 13.245.222.203/32 | ipv4 |
| 13.246.54.122/32 | ipv4 |
| 13.247.17.60/32 | ipv4 |
| 15.160.68.179/32 | ipv4 |
| 15.161.88.159/32 | ipv4 |
| 16.170.114.19/32 | ipv4 |
| 18.102.1.62/32 | ipv4 |
| 18.102.253.202/32 | ipv4 |
| 34.13.166.3/32 | ipv4 |
| 34.13.185.113/32 | ipv4 |
| 34.13.188.75/32 | ipv4 |
| 34.22.96.192/32 | ipv4 |
| 34.34.97.213/32 | ipv4 |
| 34.34.185.236/32 | ipv4 |
| 34.40.39.31/32 | ipv4 |
| 34.65.97.99/32 | ipv4 |
| 34.65.97.251/32 | ipv4 |
| 34.65.116.80/32 | ipv4 |
| 34.65.146.108/32 | ipv4 |
| 34.78.123.120/32 | ipv4 |
| 34.92.43.64/32 | ipv4 |
# Download with curl
curl -O https://cloud-ip-ranges.com/download/statuscake.txt
# Or download with wget
wget https://cloud-ip-ranges.com/download/statuscake.txt
# Download and block StatusCake IPs with iptables
wget -O statuscake_ips.txt https://cloud-ip-ranges.com/download/statuscake.txt
while read ip; do
iptables -A INPUT -s $ip -j DROP
iptables -A OUTPUT -d $ip -j DROP
done < statuscake_ips.txt
# Download and block StatusCake IPs with UFW
wget -O statuscake_ips.txt https://cloud-ip-ranges.com/download/statuscake.txt
while read ip; do
ufw deny from $ip
ufw deny to $ip
done < statuscake_ips.txt
# Create fail2ban filter for StatusCake
sudo tee /etc/fail2ban/filter.d/statuscake-block.conf << EOF
[Definition]
failregex = ^.*$
ignoreregex =
EOF
# Create jail configuration
sudo tee /etc/fail2ban/jail.d/statuscake-block.conf << EOF
[statuscake-block]
enabled = true
filter = statuscake-block
action = iptables-allports[name=statuscake]
logpath = /tmp/statuscake_ips.txt
findtime = 1
bantime = -1
maxretry = 1
EOF
# Download IP list and restart fail2ban
wget -O /tmp/statuscake_ips.txt https://cloud-ip-ranges.com/download/statuscake.txt
sudo systemctl restart fail2ban
# Create alias table for StatusCake IPs
# 1. Download the IP list
wget -O statuscake_ips.txt https://cloud-ip-ranges.com/download/statuscake.txt
# 2. In pfSense/OPNsense web interface:
# - Go to Firewall > Aliases
# - Create new alias named "STATUSCAKE_BLOCK"
# - Type: Network(s)
# - Import the downloaded file
#
# 3. Create firewall rule:
# - Go to Firewall > Rules > WAN
# - Add rule: Action=Block, Source=STATUSCAKE_BLOCK
These are the addresses StatusCake's uptime checks run from, updated regularly from its official list. Most people allowlist them so monitoring isn't rate-limited or blocked by a WAF; the same list also lets you identify StatusCake probes in your access logs, or block monitoring you didn't ask for. Last update was about 4 hours ago.