// PINGDOM / UFW
pingdom · UFW
UFW (Uncomplicated Firewall) shell script for pingdom. 156 CIDRs, refreshed daily.
// ufw_pingdom_allow.sh
#!/bin/bash # Pingdom IP Ranges # Updated: 2026-06-18 03:21: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 pingdom ufw allow from 13.232.220.164/32 ufw allow from 23.22.2.46/32 ufw allow from 23.83.129.219/32 ufw allow from 23.92.127.2/32 ufw allow from 23.106.37.99/32 ufw allow from 23.111.152.74/32 ufw allow from 23.111.159.174/32 ufw allow from 43.225.198.122/32 ufw allow from 43.229.84.12/32 ufw allow from 46.20.45.18/32 ufw allow from 46.246.122.10/32 ufw allow from 50.16.153.186/32 ufw allow from 52.0.204.16/32 ufw allow from 52.24.42.103/32 ufw allow from 52.48.244.35/32 ufw allow from 52.52.34.158/32 … (140 more lines)
// ufw_pingdom_deny.sh
#!/bin/bash # Pingdom IP Ranges # Updated: 2026-06-18 03:21: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 pingdom ufw deny from 13.232.220.164/32 ufw deny from 23.22.2.46/32 ufw deny from 23.83.129.219/32 ufw deny from 23.92.127.2/32 ufw deny from 23.106.37.99/32 ufw deny from 23.111.152.74/32 ufw deny from 23.111.159.174/32 ufw deny from 43.225.198.122/32 ufw deny from 43.229.84.12/32 ufw deny from 46.20.45.18/32 ufw deny from 46.246.122.10/32 ufw deny from 50.16.153.186/32 ufw deny from 52.0.204.16/32 ufw deny from 52.24.42.103/32 ufw deny from 52.48.244.35/32 ufw deny from 52.52.34.158/32 … (140 more lines)