cloud-ip-ranges:~$

Googlebot logo Googlebot IP Ranges

Download current IP ranges (CIDRs) used by the Googlebot crawler.

Provider Information

Total IP Ranges
2,145
1,084 IPv4 · 1,061 IPv6
Last Updated
Total Downloads
26,369

Download Options

Choose your preferred format. All downloads are permalinks that always provide the latest data.

IP Ranges

First 25 of 2,145 ranges. Download the full list above, or search for a specific IP.

CIDR Type
34.22.85.0/27 ipv4
34.64.6.0/27 ipv4
34.64.6.32/27 ipv4
34.64.6.64/27 ipv4
34.64.6.96/27 ipv4
34.64.6.128/27 ipv4
34.64.6.160/27 ipv4
34.64.6.192/27 ipv4
34.64.6.224/27 ipv4
34.64.82.64/28 ipv4
34.65.242.112/28 ipv4
34.80.50.80/28 ipv4
34.88.194.0/28 ipv4
34.89.10.80/28 ipv4
34.89.198.80/28 ipv4
34.96.162.48/28 ipv4
34.98.136.0/27 ipv4
34.98.136.32/27 ipv4
34.98.136.64/27 ipv4
34.98.136.96/27 ipv4
34.98.136.128/27 ipv4
34.98.136.160/27 ipv4
34.98.136.192/27 ipv4
34.98.136.224/27 ipv4
34.98.137.0/27 ipv4

Usage Examples - Blocking Googlebot IPs

Download the IP ranges

# Download with curl
curl -O https://cloud-ip-ranges.com/download/googlebot.txt

# Or download with wget
wget https://cloud-ip-ranges.com/download/googlebot.txt

Block with iptables (Linux firewall)

# Download and block Googlebot IPs with iptables
wget -O googlebot_ips.txt https://cloud-ip-ranges.com/download/googlebot.txt
while read ip; do
  iptables -A INPUT -s $ip -j DROP
  iptables -A OUTPUT -d $ip -j DROP
done < googlebot_ips.txt

Block with UFW (Ubuntu/Debian firewall)

# Download and block Googlebot IPs with UFW
wget -O googlebot_ips.txt https://cloud-ip-ranges.com/download/googlebot.txt
while read ip; do
  ufw deny from $ip
  ufw deny to $ip
done < googlebot_ips.txt

Block with fail2ban (intrusion prevention)

# Create fail2ban filter for Googlebot
sudo tee /etc/fail2ban/filter.d/googlebot-block.conf << EOF
[Definition]
failregex = ^.*$
ignoreregex =
EOF

# Create jail configuration
sudo tee /etc/fail2ban/jail.d/googlebot-block.conf << EOF
[googlebot-block]
enabled = true
filter = googlebot-block
action = iptables-allports[name=googlebot]
logpath = /tmp/googlebot_ips.txt
findtime = 1
bantime = -1
maxretry = 1
EOF

# Download IP list and restart fail2ban
wget -O /tmp/googlebot_ips.txt https://cloud-ip-ranges.com/download/googlebot.txt
sudo systemctl restart fail2ban

Block with pfSense/OPNsense (FreeBSD firewall)

# Create alias table for Googlebot IPs
# 1. Download the IP list
wget -O googlebot_ips.txt https://cloud-ip-ranges.com/download/googlebot.txt

# 2. In pfSense/OPNsense web interface:
# - Go to Firewall > Aliases
# - Create new alias named "GOOGLEBOT_BLOCK"
# - Type: Network(s)
# - Import the downloaded file
#
# 3. Create firewall rule:
# - Go to Firewall > Rules > WAN
# - Add rule: Action=Block, Source=GOOGLEBOT_BLOCK

About Googlebot IP Ranges

These IP ranges are sourced from Googlebot's official feed and are updated regularly. Use them to verify that requests claiming to be Googlebot actually originate from it, or to rate-limit or block it at the network edge. To opt out of crawling entirely, prefer a robots.txt rule — blocking by IP can prevent the crawler from reading your robots.txt at all. Last update was about 14 hours ago.