// IBM CLOUD / UFW
IBM Cloud · UFW
UFW (Uncomplicated Firewall) shell script for IBM Cloud. 411 CIDRs, refreshed daily.
// ufw_ibmcloud_allow.sh
#!/bin/bash # Ibmcloud IP Ranges # Updated: 2026-06-14 03:22:26 # 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 ibmcloud ufw allow from 5.10.96.0/19 ufw allow from 5.83.159.0/24 ufw allow from 13.116.64.0/18 ufw allow from 13.120.64.0/18 ufw allow from 13.121.64.0/18 ufw allow from 13.122.64.0/18 ufw allow from 43.245.168.0/24 ufw allow from 46.16.184.0/21 ufw allow from 50.22.0.0/21 ufw allow from 50.22.8.0/21 ufw allow from 50.22.16.0/21 ufw allow from 50.22.24.0/21 ufw allow from 50.22.24.0/22 ufw allow from 50.22.32.0/21 ufw allow from 50.22.40.0/21 ufw allow from 50.22.64.0/20 … (395 more lines)
// ufw_ibmcloud_deny.sh
#!/bin/bash # Ibmcloud IP Ranges # Updated: 2026-06-14 03:22:26 # 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 ibmcloud ufw deny from 5.10.96.0/19 ufw deny from 5.83.159.0/24 ufw deny from 13.116.64.0/18 ufw deny from 13.120.64.0/18 ufw deny from 13.121.64.0/18 ufw deny from 13.122.64.0/18 ufw deny from 43.245.168.0/24 ufw deny from 46.16.184.0/21 ufw deny from 50.22.0.0/21 ufw deny from 50.22.8.0/21 ufw deny from 50.22.16.0/21 ufw deny from 50.22.24.0/21 ufw deny from 50.22.24.0/22 ufw deny from 50.22.32.0/21 ufw deny from 50.22.40.0/21 ufw deny from 50.22.64.0/20 … (395 more lines)