// GOOGLEBOT / UFW
Googlebot · UFW
UFW (Uncomplicated Firewall) shell script for Googlebot. 311 CIDRs, refreshed daily.
// ufw_googlebot_allow.sh
#!/bin/bash # Googlebot IP Ranges # Updated: 2026-05-07 00:40:32 # 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 googlebot ufw allow from 2001:4860:4801:10::/64 ufw allow from 2001:4860:4801:11::/64 ufw allow from 2001:4860:4801:12::/64 ufw allow from 2001:4860:4801:13::/64 ufw allow from 2001:4860:4801:14::/64 ufw allow from 2001:4860:4801:15::/64 ufw allow from 2001:4860:4801:16::/64 ufw allow from 2001:4860:4801:17::/64 ufw allow from 2001:4860:4801:18::/64 ufw allow from 2001:4860:4801:19::/64 ufw allow from 2001:4860:4801:1a::/64 ufw allow from 2001:4860:4801:1b::/64 ufw allow from 2001:4860:4801:1c::/64 ufw allow from 2001:4860:4801:1d::/64 ufw allow from 2001:4860:4801:1e::/64 ufw allow from 2001:4860:4801:1f::/64 … (295 more lines)
// ufw_googlebot_deny.sh
#!/bin/bash # Googlebot IP Ranges # Updated: 2026-05-07 00:40:32 # 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 googlebot ufw deny from 2001:4860:4801:10::/64 ufw deny from 2001:4860:4801:11::/64 ufw deny from 2001:4860:4801:12::/64 ufw deny from 2001:4860:4801:13::/64 ufw deny from 2001:4860:4801:14::/64 ufw deny from 2001:4860:4801:15::/64 ufw deny from 2001:4860:4801:16::/64 ufw deny from 2001:4860:4801:17::/64 ufw deny from 2001:4860:4801:18::/64 ufw deny from 2001:4860:4801:19::/64 ufw deny from 2001:4860:4801:1a::/64 ufw deny from 2001:4860:4801:1b::/64 ufw deny from 2001:4860:4801:1c::/64 ufw deny from 2001:4860:4801:1d::/64 ufw deny from 2001:4860:4801:1e::/64 ufw deny from 2001:4860:4801:1f::/64 … (295 more lines)