cloud-ip-ranges:~$

Wasabi logo Wasabi IP Ranges

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

Provider Information

Official Website
https://wasabi.com
Total IP Ranges
20
20 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 20 of 20 ranges. Download the full list above, or search for a specific IP.

CIDR Type Tag
27.131.254.0/24 ipv4 AS395717
38.27.106.0/24 ipv4 AS395717
38.73.225.0/24 ipv4 AS395717
38.91.42.0/24 ipv4 AS395717
38.126.68.0/24 ipv4 AS395717
38.143.146.0/24 ipv4 AS395717
38.146.40.0/24 ipv4 AS395717
38.146.208.0/24 ipv4 AS395717
38.146.209.0/24 ipv4 AS395717
38.242.13.0/24 ipv4 AS395717
103.151.85.0/24 ipv4 AS395717
130.117.185.0/24 ipv4 AS395717
130.117.252.0/24 ipv4 AS395717
149.5.241.0/24 ipv4 AS395717
149.13.185.0/24 ipv4 AS395717
154.18.200.0/24 ipv4 AS395717
154.49.215.0/24 ipv4 AS395717
154.56.213.0/24 ipv4 AS395717
154.61.149.0/24 ipv4 AS395717
206.148.5.0/24 ipv4 AS395717

Usage Examples - Blocking Wasabi IPs

Download the IP ranges

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

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

Block with iptables (Linux firewall)

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

Block with UFW (Ubuntu/Debian firewall)

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

Block with fail2ban (intrusion prevention)

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

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

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

Block with pfSense/OPNsense (FreeBSD firewall)

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

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

About Wasabi IP Ranges

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