// GOOGLE SERVICES / UFW
Google Services · UFW
UFW (Uncomplicated Firewall) shell script for Google Services. 340 CIDRs, refreshed daily.
// ufw_googleservices_allow.sh
#!/bin/bash # Googleservices IP Ranges # Updated: 2026-07-12 03:12:28 # 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 googleservices ufw allow from 8.8.4.0/24 ufw allow from 8.8.8.0/24 ufw allow from 8.35.200.0/21 ufw allow from 8.230.128.0/17 ufw allow from 8.231.0.0/19 ufw allow from 8.234.0.0/23 ufw allow from 8.234.18.0/23 ufw allow from 8.234.20.0/22 ufw allow from 8.234.24.0/21 ufw allow from 8.236.0.0/15 ufw allow from 34.0.228.0/22 ufw allow from 34.0.232.0/21 ufw allow from 34.1.64.0/18 ufw allow from 34.2.64.0/21 ufw allow from 34.2.72.0/22 ufw allow from 34.2.78.0/23 … (324 more lines)
// ufw_googleservices_deny.sh
#!/bin/bash # Googleservices IP Ranges # Updated: 2026-07-12 03:12:28 # 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 googleservices ufw deny from 8.8.4.0/24 ufw deny from 8.8.8.0/24 ufw deny from 8.35.200.0/21 ufw deny from 8.230.128.0/17 ufw deny from 8.231.0.0/19 ufw deny from 8.234.0.0/23 ufw deny from 8.234.18.0/23 ufw deny from 8.234.20.0/22 ufw deny from 8.234.24.0/21 ufw deny from 8.236.0.0/15 ufw deny from 34.0.228.0/22 ufw deny from 34.0.232.0/21 ufw deny from 34.1.64.0/18 ufw deny from 34.2.64.0/21 ufw deny from 34.2.72.0/22 ufw deny from 34.2.78.0/23 … (324 more lines)