cloud-ip-ranges:~$

UpCloud logo UpCloud IP Ranges

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

Provider Information

Official Website
https://upcloud.com
Total IP Ranges
107
87 IPv4 · 20 IPv6
Last Updated
Total Downloads
10

Download Options

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

IP Ranges

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

CIDR Type Tag
5.22.208.0/22 ipv4 AS202053
5.22.212.0/22 ipv4 AS202053
5.22.216.0/22 ipv4 AS202053
5.22.220.0/22 ipv4 AS202053
5.57.208.0/24 ipv4 AS25697
5.253.32.0/22 ipv4 AS202053
38.100.118.0/23 ipv4 AS25697
62.164.153.0/24 ipv4 AS25697
77.81.0.0/24 ipv4 AS202053
80.69.172.0/22 ipv4 AS202053
81.27.96.0/22 ipv4 AS202053
81.27.100.0/22 ipv4 AS202053
81.27.104.0/23 ipv4 AS202053
81.27.106.0/23 ipv4 AS202053
81.27.108.0/22 ipv4 AS202053
83.136.248.0/21 ipv4 AS202053
85.9.192.0/21 ipv4 AS25697
85.9.200.0/21 ipv4 AS202053
85.9.208.0/21 ipv4 AS202053
85.9.216.0/22 ipv4 AS202053
85.9.220.0/22 ipv4 AS202053
87.58.144.0/22 ipv4 AS202053
87.58.148.0/22 ipv4 AS202053
87.58.152.0/22 ipv4 AS202053
87.58.156.0/23 ipv4 AS202053

Usage Examples - Blocking UpCloud IPs

Download the IP ranges

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

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

Block with iptables (Linux firewall)

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

Block with UFW (Ubuntu/Debian firewall)

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

Block with fail2ban (intrusion prevention)

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

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

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

Block with pfSense/OPNsense (FreeBSD firewall)

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

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

About UpCloud IP Ranges

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