// GPTBOT / UFW
GPTBot · UFW
UFW (Uncomplicated Firewall) shell script for GPTBot. 322 CIDRs, refreshed daily.
// ufw_gptbot_allow.sh
#!/bin/bash # Gptbot IP Ranges # Updated: 2026-07-11 03:12:34 # 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 gptbot ufw allow from 4.151.71.176/28 ufw allow from 4.151.119.48/28 ufw allow from 4.151.241.240/28 ufw allow from 4.189.118.208/28 ufw allow from 4.189.119.48/28 ufw allow from 4.196.118.112/28 ufw allow from 4.197.19.176/28 ufw allow from 4.197.22.112/28 ufw allow from 4.197.64.0/27 ufw allow from 4.197.64.48/28 ufw allow from 4.197.64.64/28 ufw allow from 4.197.115.112/28 ufw allow from 4.198.72.16/28 ufw allow from 4.201.232.64/28 ufw allow from 4.205.128.176/28 ufw allow from 4.226.226.32/28 … (259 more lines)
// ufw_gptbot_deny.sh
#!/bin/bash # Gptbot IP Ranges # Updated: 2026-07-11 03:12:34 # 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 gptbot ufw deny from 4.151.71.176/28 ufw deny from 4.151.119.48/28 ufw deny from 4.151.241.240/28 ufw deny from 4.189.118.208/28 ufw deny from 4.189.119.48/28 ufw deny from 4.196.118.112/28 ufw deny from 4.197.19.176/28 ufw deny from 4.197.22.112/28 ufw deny from 4.197.64.0/27 ufw deny from 4.197.64.48/28 ufw deny from 4.197.64.64/28 ufw deny from 4.197.115.112/28 ufw deny from 4.198.72.16/28 ufw deny from 4.201.232.64/28 ufw deny from 4.205.128.176/28 ufw deny from 4.226.226.32/28 … (259 more lines)