// GCORE / UFW
gcore · UFW
UFW (Uncomplicated Firewall) shell script for gcore. 1,835 CIDRs, refreshed daily.
// ufw_gcore_allow.sh
#!/bin/bash # Gcore IP Ranges # Updated: 2026-07-12 03:46:19 # 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 gcore ufw allow from 1.37.77.98/32 ufw allow from 5.1.107.249/32 ufw allow from 5.8.92.4/30 ufw allow from 5.8.92.8/32 ufw allow from 5.101.217.4/31 ufw allow from 5.101.217.6/32 ufw allow from 5.101.219.5/32 ufw allow from 5.101.219.6/31 ufw allow from 5.101.219.8/32 ufw allow from 5.101.220.9/32 ufw allow from 5.101.222.4/30 ufw allow from 5.101.222.10/31 ufw allow from 5.188.94.5/32 ufw allow from 5.188.126.4/30 ufw allow from 5.188.126.8/30 ufw allow from 5.188.132.5/32 … (998 more lines)
// ufw_gcore_deny.sh
#!/bin/bash # Gcore IP Ranges # Updated: 2026-07-12 03:46:19 # 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 gcore ufw deny from 1.37.77.98/32 ufw deny from 5.1.107.249/32 ufw deny from 5.8.92.4/30 ufw deny from 5.8.92.8/32 ufw deny from 5.101.217.4/31 ufw deny from 5.101.217.6/32 ufw deny from 5.101.219.5/32 ufw deny from 5.101.219.6/31 ufw deny from 5.101.219.8/32 ufw deny from 5.101.220.9/32 ufw deny from 5.101.222.4/30 ufw deny from 5.101.222.10/31 ufw deny from 5.188.94.5/32 ufw deny from 5.188.126.4/30 ufw deny from 5.188.126.8/30 ufw deny from 5.188.132.5/32 … (998 more lines)