// GOOGLE CLOUD / UFW
Google Cloud · UFW
UFW (Uncomplicated Firewall) shell script for Google Cloud. 967 CIDRs, refreshed daily.
// ufw_googlecloud_allow.sh
#!/bin/bash # Googlecloud IP Ranges # Updated: 2026-05-19 03:18:55 # 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 googlecloud ufw allow from 34.1.208.0/20 ufw allow from 34.35.0.0/16 ufw allow from 34.152.86.0/23 ufw allow from 34.177.50.0/23 ufw allow from 2600:1900:8000::/44 ufw allow from 34.80.0.0/15 ufw allow from 34.137.0.0/16 ufw allow from 34.183.71.0/24 ufw allow from 34.183.104.0/24 ufw allow from 34.184.70.0/24 ufw allow from 34.184.83.0/24 ufw allow from 35.185.128.0/19 ufw allow from 35.185.160.0/20 ufw allow from 35.187.144.0/20 ufw allow from 35.189.160.0/19 ufw allow from 35.194.128.0/17 … (951 more lines)
// ufw_googlecloud_deny.sh
#!/bin/bash # Googlecloud IP Ranges # Updated: 2026-05-19 03:18:55 # 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 googlecloud ufw deny from 34.1.208.0/20 ufw deny from 34.35.0.0/16 ufw deny from 34.152.86.0/23 ufw deny from 34.177.50.0/23 ufw deny from 2600:1900:8000::/44 ufw deny from 34.80.0.0/15 ufw deny from 34.137.0.0/16 ufw deny from 34.183.71.0/24 ufw deny from 34.183.104.0/24 ufw deny from 34.184.70.0/24 ufw deny from 34.184.83.0/24 ufw deny from 35.185.128.0/19 ufw deny from 35.185.160.0/20 ufw deny from 35.187.144.0/20 ufw deny from 35.189.160.0/19 ufw deny from 35.194.128.0/17 … (951 more lines)