// BACKBLAZE / UFW
backblaze · UFW
UFW (Uncomplicated Firewall) shell script for backblaze. 59 CIDRs, refreshed daily.
// ufw_backblaze_allow.sh
#!/bin/bash # Backblaze IP Ranges # Updated: 2026-07-12 03:46: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 backblaze ufw allow from 23.144.80.0/24 ufw allow from 45.11.36.0/22 ufw allow from 104.153.232.0/22 ufw allow from 104.153.236.0/23 ufw allow from 104.153.238.0/24 ufw allow from 149.137.128.0/21 ufw allow from 149.137.136.0/22 ufw allow from 149.137.140.0/23 ufw allow from 149.137.142.0/24 ufw allow from 206.190.208.0/21 ufw allow from 2605:72c0:100::/45 ufw allow from 2605:72c0:1fc::/46 ufw allow from 2605:72c0:200::/45 ufw allow from 2605:72c0:208::/47 ufw allow from 2605:72c0:20a::/48 ufw allow from 2605:72c0:2fc::/46 … (10 more lines)
// ufw_backblaze_deny.sh
#!/bin/bash # Backblaze IP Ranges # Updated: 2026-07-12 03:46: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 backblaze ufw deny from 23.144.80.0/24 ufw deny from 45.11.36.0/22 ufw deny from 104.153.232.0/22 ufw deny from 104.153.236.0/23 ufw deny from 104.153.238.0/24 ufw deny from 149.137.128.0/21 ufw deny from 149.137.136.0/22 ufw deny from 149.137.140.0/23 ufw deny from 149.137.142.0/24 ufw deny from 206.190.208.0/21 ufw deny from 2605:72c0:100::/45 ufw deny from 2605:72c0:1fc::/46 ufw deny from 2605:72c0:200::/45 ufw deny from 2605:72c0:208::/47 ufw deny from 2605:72c0:20a::/48 ufw deny from 2605:72c0:2fc::/46 … (10 more lines)