// GABIA / UFW
gabia · UFW
UFW (Uncomplicated Firewall) shell script for gabia. 97 CIDRs, refreshed daily.
// ufw_gabia_allow.sh
#!/bin/bash # Gabia IP Ranges # Updated: 2026-07-12 03:46: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 gabia ufw allow from 1.201.224.0/23 ufw allow from 103.240.48.0/22 ufw allow from 121.78.79.0/24 ufw allow from 121.78.87.0/24 ufw allow from 121.78.93.0/24 ufw allow from 121.78.95.0/24 ufw allow from 121.78.112.0/21 ufw allow from 121.78.121.0/24 ufw allow from 121.78.122.0/24 ufw allow from 121.78.124.0/24 ufw allow from 121.78.126.0/23 ufw allow from 121.78.129.0/24 ufw allow from 121.78.131.0/24 ufw allow from 121.78.132.0/23 ufw allow from 121.78.134.0/24 ufw allow from 121.78.144.0/22 … (32 more lines)
// ufw_gabia_deny.sh
#!/bin/bash # Gabia IP Ranges # Updated: 2026-07-12 03:46: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 gabia ufw deny from 1.201.224.0/23 ufw deny from 103.240.48.0/22 ufw deny from 121.78.79.0/24 ufw deny from 121.78.87.0/24 ufw deny from 121.78.93.0/24 ufw deny from 121.78.95.0/24 ufw deny from 121.78.112.0/21 ufw deny from 121.78.121.0/24 ufw deny from 121.78.122.0/24 ufw deny from 121.78.124.0/24 ufw deny from 121.78.126.0/23 ufw deny from 121.78.129.0/24 ufw deny from 121.78.131.0/24 ufw deny from 121.78.132.0/23 ufw deny from 121.78.134.0/24 ufw deny from 121.78.144.0/22 … (32 more lines)