// QUICCLOUD / UFW
quiccloud · UFW
UFW (Uncomplicated Firewall) shell script for quiccloud. 153 CIDRs, refreshed daily.
// ufw_quiccloud_allow.sh
#!/bin/bash # Quiccloud 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 quiccloud ufw allow from 5.134.119.103/32 ufw allow from 15.204.231.24/32 ufw allow from 15.235.180.91/32 ufw allow from 15.235.181.227/32 ufw allow from 18.192.146.200/32 ufw allow from 23.95.72.16/32 ufw allow from 23.160.56.125/32 ufw allow from 31.22.115.186/32 ufw allow from 31.40.212.152/32 ufw allow from 31.131.4.244/32 ufw allow from 37.120.163.165/32 ufw allow from 38.54.30.228/32 ufw allow from 38.54.79.187/32 ufw allow from 38.60.253.237/32 ufw allow from 38.114.121.40/32 ufw allow from 40.160.225.31/32 … (137 more lines)
// ufw_quiccloud_deny.sh
#!/bin/bash # Quiccloud 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 quiccloud ufw deny from 5.134.119.103/32 ufw deny from 15.204.231.24/32 ufw deny from 15.235.180.91/32 ufw deny from 15.235.181.227/32 ufw deny from 18.192.146.200/32 ufw deny from 23.95.72.16/32 ufw deny from 23.160.56.125/32 ufw deny from 31.22.115.186/32 ufw deny from 31.40.212.152/32 ufw deny from 31.131.4.244/32 ufw deny from 37.120.163.165/32 ufw deny from 38.54.30.228/32 ufw deny from 38.54.79.187/32 ufw deny from 38.60.253.237/32 ufw deny from 38.114.121.40/32 ufw deny from 40.160.225.31/32 … (137 more lines)