// GPTBOT / UFW
GPTBot · UFW
UFW (Uncomplicated Firewall) shell script for GPTBot. 303 CIDRs, refreshed daily.
// ufw_gptbot_allow.sh
#!/bin/bash # Gptbot IP Ranges # Updated: 2026-05-21 03:20:31 # 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 00:00 UTC # UFW allow rules for gptbot ufw allow from 132.196.86.0/24 ufw allow from 172.182.202.0/25 ufw allow from 172.182.204.0/24 ufw allow from 172.182.207.0/25 ufw allow from 172.182.214.0/24 ufw allow from 172.182.215.0/24 ufw allow from 20.125.66.80/28 ufw allow from 20.171.206.0/24 ufw allow from 20.171.207.0/24 ufw allow from 4.227.36.0/25 ufw allow from 52.230.152.0/24 ufw allow from 74.7.175.128/25 ufw allow from 74.7.227.0/25 ufw allow from 74.7.227.128/25 ufw allow from 74.7.228.0/25 ufw allow from 74.7.230.0/25 … (287 more lines)
// ufw_gptbot_deny.sh
#!/bin/bash # Gptbot IP Ranges # Updated: 2026-05-21 03:20:31 # 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 00:00 UTC # UFW deny rules for gptbot ufw deny from 132.196.86.0/24 ufw deny from 172.182.202.0/25 ufw deny from 172.182.204.0/24 ufw deny from 172.182.207.0/25 ufw deny from 172.182.214.0/24 ufw deny from 172.182.215.0/24 ufw deny from 20.125.66.80/28 ufw deny from 20.171.206.0/24 ufw deny from 20.171.207.0/24 ufw deny from 4.227.36.0/25 ufw deny from 52.230.152.0/24 ufw deny from 74.7.175.128/25 ufw deny from 74.7.227.0/25 ufw deny from 74.7.227.128/25 ufw deny from 74.7.228.0/25 ufw deny from 74.7.230.0/25 … (287 more lines)