cloud-ip-ranges:~$

IBM Cloud logo IBM Cloud IP Ranges

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

Provider Information

Official Website
https://cloud.ibm.com
Total IP Ranges
709
709 IPv4 · 0 IPv6
Last Updated
Total Downloads
26,668

Download Options

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

IP Ranges

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

CIDR Type Region Tag
5.10.117.0/24 ipv4 lon02 London
5.10.118.0/23 ipv4 lon02 London
10.0.40.0/22 ipv4 dal05 Dallas
10.0.64.0/19 ipv4 All -
10.0.192.0/26 ipv4 dal10 BCR01
10.0.192.64/26 ipv4 dal10 BCR02
10.0.192.128/26 ipv4 wdc04 BCR02
10.1.0.0/24 ipv4 tor04 Toronto
10.1.2.0/24 ipv4 tor04 BCR01
10.1.4.0/24 ipv4 tor05 Toronto
10.1.6.0/24 ipv4 tor05 BCR01
10.1.56.0/24 ipv4 mad02 Madrid
10.1.60.0/24 ipv4 mad04 Madrid
10.1.96.0/19 ipv4 wdc01 Washington D.C.
10.1.104.0/24 ipv4 wdc01
10.1.106.0/24 ipv4 wdc01
10.1.110.0/24 ipv4 wdc01
10.1.114.0/24 ipv4 wdc01
10.1.122.0/24 ipv4 wdc01
10.1.128.0/19 ipv4 dal05 Dallas
10.1.138.0/24 ipv4 dal05
10.1.142.0/24 ipv4 dal05
10.1.151.0/24 ipv4 dal05 Dallas
10.1.154.0/24 ipv4 dal05
10.1.192.0/20 ipv4 sjc01 San Jose

Usage Examples - Blocking IBM Cloud IPs

Download the IP ranges

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

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

Block with iptables (Linux firewall)

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

Block with UFW (Ubuntu/Debian firewall)

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

Block with fail2ban (intrusion prevention)

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

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

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

Block with pfSense/OPNsense (FreeBSD firewall)

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

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

About IBM Cloud IP Ranges

These IP ranges are sourced directly from IBM Cloud's official feeds and are updated regularly to ensure accuracy. The data includes IPv4 and IPv6 ranges used by IBM Cloud's infrastructure worldwide. Last update was 16 minutes ago.