// GOOGLE CLOUD / UFW
Google Cloud · UFW
UFW (Uncomplicated Firewall) shell script for Google Cloud. 1,039 CIDRs, refreshed daily.
// ufw_googlecloud_allow.sh
#!/bin/bash # Googlecloud IP Ranges # Updated: 2026-07-01 03:19:43 # 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 googlecloud ufw allow from 8.34.208.0/20 ufw allow from 8.35.192.0/21 ufw allow from 8.228.0.0/15 ufw allow from 8.230.0.0/17 ufw allow from 8.231.32.0/19 ufw allow from 8.231.64.0/18 ufw allow from 8.231.128.0/17 ufw allow from 8.232.0.0/15 ufw allow from 8.234.2.0/23 ufw allow from 8.234.4.0/22 ufw allow from 8.234.8.0/21 ufw allow from 8.234.16.0/23 ufw allow from 8.234.32.0/19 ufw allow from 8.234.64.0/18 ufw allow from 8.234.128.0/17 ufw allow from 8.235.0.0/16 … (439 more lines)
// ufw_googlecloud_deny.sh
#!/bin/bash # Googlecloud IP Ranges # Updated: 2026-07-01 03:19:43 # 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 googlecloud ufw deny from 8.34.208.0/20 ufw deny from 8.35.192.0/21 ufw deny from 8.228.0.0/15 ufw deny from 8.230.0.0/17 ufw deny from 8.231.32.0/19 ufw deny from 8.231.64.0/18 ufw deny from 8.231.128.0/17 ufw deny from 8.232.0.0/15 ufw deny from 8.234.2.0/23 ufw deny from 8.234.4.0/22 ufw deny from 8.234.8.0/21 ufw deny from 8.234.16.0/23 ufw deny from 8.234.32.0/19 ufw deny from 8.234.64.0/18 ufw deny from 8.234.128.0/17 ufw deny from 8.235.0.0/16 … (439 more lines)