// PINGDOM / UFW
pingdom · UFW
UFW (Uncomplicated Firewall) shell script for pingdom. 206 CIDRs, refreshed daily.
// ufw_pingdom_allow.sh
#!/bin/bash # Pingdom IP Ranges # Updated: 2026-08-27 03:59:39 # 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 pingdom ufw allow from 3.10.222.182/32 ufw allow from 3.11.131.95/32 ufw allow from 3.66.99.59/32 ufw allow from 3.120.200.34/32 ufw allow from 3.121.108.101/32 ufw allow from 3.125.198.20/32 ufw allow from 3.127.78.190/32 ufw allow from 3.219.128.11/32 ufw allow from 3.234.196.132/32 ufw allow from 13.41.140.26/32 ufw allow from 13.41.156.80/32 ufw allow from 13.48.152.99/32 ufw allow from 13.49.128.195/32 ufw allow from 13.232.220.164/32 ufw allow from 13.238.73.96/32 ufw allow from 13.238.127.47/32 … (188 more lines)
// ufw_pingdom_deny.sh
#!/bin/bash # Pingdom IP Ranges # Updated: 2026-08-27 03:59:39 # 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 pingdom ufw deny from 3.10.222.182/32 ufw deny from 3.11.131.95/32 ufw deny from 3.66.99.59/32 ufw deny from 3.120.200.34/32 ufw deny from 3.121.108.101/32 ufw deny from 3.125.198.20/32 ufw deny from 3.127.78.190/32 ufw deny from 3.219.128.11/32 ufw deny from 3.234.196.132/32 ufw deny from 13.41.140.26/32 ufw deny from 13.41.156.80/32 ufw deny from 13.48.152.99/32 ufw deny from 13.49.128.195/32 ufw deny from 13.232.220.164/32 ufw deny from 13.238.73.96/32 ufw deny from 13.238.127.47/32 … (188 more lines)