// GPTBOT / UFW
GPTBot · UFW
UFW (Uncomplicated Firewall) shell script for GPTBot. 260 CIDRs, refreshed daily.
// ufw_gptbot_allow.sh
#!/bin/bash # Gptbot IP Ranges # Updated: 2026-08-15 02:29: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 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.189.118.208/28 ufw allow from 4.189.119.48/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.201.232.64/28 ufw allow from 4.205.128.176/28 ufw allow from 4.218.24.64/28 ufw allow from 4.226.200.16/28 ufw allow from 4.226.226.32/28 ufw allow from 4.227.36.0/25 ufw allow from 9.129.0.0/17 … (217 more lines)
// ufw_gptbot_deny.sh
#!/bin/bash # Gptbot IP Ranges # Updated: 2026-08-15 02:29: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 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.189.118.208/28 ufw deny from 4.189.119.48/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.201.232.64/28 ufw deny from 4.205.128.176/28 ufw deny from 4.218.24.64/28 ufw deny from 4.226.200.16/28 ufw deny from 4.226.226.32/28 ufw deny from 4.227.36.0/25 ufw deny from 9.129.0.0/17 … (217 more lines)