// GOOGLEBOT / UFW
Googlebot · UFW
UFW (Uncomplicated Firewall) shell script for Googlebot. 315 CIDRs, refreshed daily.
// ufw_googlebot_allow.sh
#!/bin/bash # Googlebot IP Ranges # Updated: 2026-06-25 03:20:13 # 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 googlebot ufw allow from 34.22.85.0/27 ufw allow from 34.64.82.64/28 ufw allow from 34.65.242.112/28 ufw allow from 34.80.50.80/28 ufw allow from 34.88.194.0/28 ufw allow from 34.89.10.80/28 ufw allow from 34.89.198.80/28 ufw allow from 34.96.162.48/28 ufw allow from 34.100.182.96/28 ufw allow from 34.101.50.144/28 ufw allow from 34.118.66.0/28 ufw allow from 34.118.254.0/28 ufw allow from 34.126.178.96/28 ufw allow from 34.146.150.144/28 ufw allow from 34.147.110.144/28 ufw allow from 34.151.74.144/28 … (49 more lines)
// ufw_googlebot_deny.sh
#!/bin/bash # Googlebot IP Ranges # Updated: 2026-06-25 03:20:13 # 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 googlebot ufw deny from 34.22.85.0/27 ufw deny from 34.64.82.64/28 ufw deny from 34.65.242.112/28 ufw deny from 34.80.50.80/28 ufw deny from 34.88.194.0/28 ufw deny from 34.89.10.80/28 ufw deny from 34.89.198.80/28 ufw deny from 34.96.162.48/28 ufw deny from 34.100.182.96/28 ufw deny from 34.101.50.144/28 ufw deny from 34.118.66.0/28 ufw deny from 34.118.254.0/28 ufw deny from 34.126.178.96/28 ufw deny from 34.146.150.144/28 ufw deny from 34.147.110.144/28 ufw deny from 34.151.74.144/28 … (49 more lines)