// CLAUDEBOT / UFW
claudebot · UFW
UFW (Uncomplicated Firewall) shell script for claudebot. 26 CIDRs, refreshed daily.
// ufw_claudebot_allow.sh
#!/bin/bash # Claudebot IP Ranges # Updated: 2026-08-20 02:31:51 # 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 claudebot ufw allow from 16.58.26.69/32 ufw allow from 18.225.238.228/32 ufw allow from 18.227.226.255/32 ufw allow from 20.64.57.208/28 ufw allow from 20.102.46.224/28 ufw allow from 34.11.34.31/32 ufw allow from 34.85.172.162/32 ufw allow from 34.150.241.79/32 ufw allow from 34.162.191.81/32 ufw allow from 34.162.230.222/32 ufw allow from 34.162.244.71/32 ufw allow from 34.182.140.95/32 ufw allow from 34.182.161.143/32 ufw allow from 34.182.218.27/32 ufw allow from 34.182.220.85/32 ufw allow from 34.182.222.37/32 … (10 more lines)
// ufw_claudebot_deny.sh
#!/bin/bash # Claudebot IP Ranges # Updated: 2026-08-20 02:31:51 # 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 claudebot ufw deny from 16.58.26.69/32 ufw deny from 18.225.238.228/32 ufw deny from 18.227.226.255/32 ufw deny from 20.64.57.208/28 ufw deny from 20.102.46.224/28 ufw deny from 34.11.34.31/32 ufw deny from 34.85.172.162/32 ufw deny from 34.150.241.79/32 ufw deny from 34.162.191.81/32 ufw deny from 34.162.230.222/32 ufw deny from 34.162.244.71/32 ufw deny from 34.182.140.95/32 ufw deny from 34.182.161.143/32 ufw deny from 34.182.218.27/32 ufw deny from 34.182.220.85/32 ufw deny from 34.182.222.37/32 … (10 more lines)