// UPTIMEROBOT / UFW
uptimerobot · UFW
UFW (Uncomplicated Firewall) shell script for uptimerobot. 232 CIDRs, refreshed daily.
// ufw_uptimerobot_allow.sh
#!/bin/bash # Uptimerobot IP Ranges # Updated: 2026-06-14 03:22:18 # 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 uptimerobot ufw allow from 3.12.251.153/32 ufw allow from 3.20.63.178/32 ufw allow from 3.77.67.4/32 ufw allow from 3.79.134.69/32 ufw allow from 3.105.133.239/32 ufw allow from 3.105.190.221/32 ufw allow from 3.133.226.214/32 ufw allow from 3.149.57.90/32 ufw allow from 3.212.128.62/32 ufw allow from 5.161.61.238/32 ufw allow from 5.161.73.160/32 ufw allow from 5.161.75.7/32 ufw allow from 5.161.113.195/32 ufw allow from 5.161.117.52/32 ufw allow from 5.161.177.47/32 ufw allow from 5.161.194.92/32 … (216 more lines)
// ufw_uptimerobot_deny.sh
#!/bin/bash # Uptimerobot IP Ranges # Updated: 2026-06-14 03:22:18 # 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 uptimerobot ufw deny from 3.12.251.153/32 ufw deny from 3.20.63.178/32 ufw deny from 3.77.67.4/32 ufw deny from 3.79.134.69/32 ufw deny from 3.105.133.239/32 ufw deny from 3.105.190.221/32 ufw deny from 3.133.226.214/32 ufw deny from 3.149.57.90/32 ufw deny from 3.212.128.62/32 ufw deny from 5.161.61.238/32 ufw deny from 5.161.73.160/32 ufw deny from 5.161.75.7/32 ufw deny from 5.161.113.195/32 ufw deny from 5.161.117.52/32 ufw deny from 5.161.177.47/32 ufw deny from 5.161.194.92/32 … (216 more lines)