cloud-ip-ranges:~$

QUIC.cloud logo QUIC.cloud IP Ranges

Download current IP ranges (CIDRs) used by the QUIC.cloud infrastructure.

Provider Information

Category
CDN & Edge
Official Website
https://quic.cloud
Total IP Ranges
153
153 IPv4 · 0 IPv6
Last Updated
Total Downloads
9

Download Options

Choose your preferred format. All downloads are permalinks that always provide the latest data.

IP Ranges

First 25 of 153 ranges. Download the full list above, or search for a specific IP.

CIDR Type
5.134.119.103/32 ipv4
15.204.231.24/32 ipv4
15.235.180.91/32 ipv4
15.235.181.227/32 ipv4
18.192.146.200/32 ipv4
23.95.72.16/32 ipv4
23.160.56.125/32 ipv4
31.22.115.186/32 ipv4
31.40.212.152/32 ipv4
31.131.4.244/32 ipv4
37.120.163.165/32 ipv4
38.54.30.228/32 ipv4
38.54.79.187/32 ipv4
38.60.253.237/32 ipv4
38.114.121.40/32 ipv4
40.160.225.31/32 ipv4
40.160.241.195/32 ipv4
41.185.29.210/32 ipv4
41.223.52.170/32 ipv4
45.32.67.144/32 ipv4
45.32.77.223/32 ipv4
45.32.123.201/32 ipv4
45.32.183.112/32 ipv4
45.32.203.144/32 ipv4
45.63.67.181/32 ipv4

Usage Examples - Blocking QUIC.cloud IPs

Download the IP ranges

# Download with curl
curl -O https://cloud-ip-ranges.com/download/quic-cloud.txt

# Or download with wget
wget https://cloud-ip-ranges.com/download/quic-cloud.txt

Block with iptables (Linux firewall)

# Download and block QUIC.cloud IPs with iptables
wget -O quic-cloud_ips.txt https://cloud-ip-ranges.com/download/quic-cloud.txt
while read ip; do
  iptables -A INPUT -s $ip -j DROP
  iptables -A OUTPUT -d $ip -j DROP
done < quic-cloud_ips.txt

Block with UFW (Ubuntu/Debian firewall)

# Download and block QUIC.cloud IPs with UFW
wget -O quic-cloud_ips.txt https://cloud-ip-ranges.com/download/quic-cloud.txt
while read ip; do
  ufw deny from $ip
  ufw deny to $ip
done < quic-cloud_ips.txt

Block with fail2ban (intrusion prevention)

# Create fail2ban filter for QUIC.cloud
sudo tee /etc/fail2ban/filter.d/quic-cloud-block.conf << EOF
[Definition]
failregex = ^.*$
ignoreregex =
EOF

# Create jail configuration
sudo tee /etc/fail2ban/jail.d/quic-cloud-block.conf << EOF
[quic-cloud-block]
enabled = true
filter = quic-cloud-block
action = iptables-allports[name=quic-cloud]
logpath = /tmp/quic-cloud_ips.txt
findtime = 1
bantime = -1
maxretry = 1
EOF

# Download IP list and restart fail2ban
wget -O /tmp/quic-cloud_ips.txt https://cloud-ip-ranges.com/download/quic-cloud.txt
sudo systemctl restart fail2ban

Block with pfSense/OPNsense (FreeBSD firewall)

# Create alias table for QUIC.cloud IPs
# 1. Download the IP list
wget -O quic-cloud_ips.txt https://cloud-ip-ranges.com/download/quic-cloud.txt

# 2. In pfSense/OPNsense web interface:
# - Go to Firewall > Aliases
# - Create new alias named "QUIC-CLOUD_BLOCK"
# - Type: Network(s)
# - Import the downloaded file
#
# 3. Create firewall rule:
# - Go to Firewall > Rules > WAN
# - Add rule: Action=Block, Source=QUIC-CLOUD_BLOCK

About QUIC.cloud IP Ranges

These IP ranges are sourced directly from QUIC.cloud's official feeds and are updated regularly to ensure accuracy. The data includes IPv4 and IPv6 ranges used by QUIC.cloud's infrastructure worldwide. Last update was about 4 hours ago.