// GOCACHE / UFW
gocache · UFW
UFW (Uncomplicated Firewall) shell script for gocache. 25 CIDRs, refreshed daily.
// ufw_gocache_allow.sh
#!/bin/bash # Gocache IP Ranges # Updated: 2026-07-12 03:46:20 # 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 gocache ufw allow from 34.95.148.131/32 ufw allow from 34.95.164.249/32 ufw allow from 34.95.168.58/32 ufw allow from 34.95.209.169/32 ufw allow from 34.95.213.225/32 ufw allow from 34.95.253.129/32 ufw allow from 35.247.222.78/32 ufw allow from 38.224.134.0/24 ufw allow from 45.77.97.241/32 ufw allow from 52.67.255.165/32 ufw allow from 129.159.48.87/32 ufw allow from 140.82.27.226/32 ufw allow from 144.22.216.139/32 ufw allow from 150.230.84.126/32 ufw allow from 170.82.175.0/24 ufw allow from 170.84.29.208/29 … (9 more lines)
// ufw_gocache_deny.sh
#!/bin/bash # Gocache IP Ranges # Updated: 2026-07-12 03:46:20 # 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 gocache ufw deny from 34.95.148.131/32 ufw deny from 34.95.164.249/32 ufw deny from 34.95.168.58/32 ufw deny from 34.95.209.169/32 ufw deny from 34.95.213.225/32 ufw deny from 34.95.253.129/32 ufw deny from 35.247.222.78/32 ufw deny from 38.224.134.0/24 ufw deny from 45.77.97.241/32 ufw deny from 52.67.255.165/32 ufw deny from 129.159.48.87/32 ufw deny from 140.82.27.226/32 ufw deny from 144.22.216.139/32 ufw deny from 150.230.84.126/32 ufw deny from 170.82.175.0/24 ufw deny from 170.84.29.208/29 … (9 more lines)