// LEASEWEB / UFW
leaseweb · UFW
UFW (Uncomplicated Firewall) shell script for leaseweb. 2,029 CIDRs, refreshed daily.
// ufw_leaseweb_allow.sh
#!/bin/bash # Leaseweb IP Ranges # Updated: 2026-07-12 03:17:58 # 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 leaseweb ufw allow from 2.56.100.0/24 ufw allow from 2.57.20.0/23 ufw allow from 2.59.20.0/24 ufw allow from 5.61.32.0/20 ufw allow from 5.79.64.0/18 ufw allow from 5.181.40.0/22 ufw allow from 5.188.222.0/24 ufw allow from 23.19.0.0/19 ufw allow from 23.19.32.0/21 ufw allow from 23.19.41.0/24 ufw allow from 23.19.44.0/22 ufw allow from 23.19.52.0/23 ufw allow from 23.19.56.0/21 ufw allow from 23.19.64.0/18 ufw allow from 23.19.128.0/20 ufw allow from 23.19.144.0/21 … (1357 more lines)
// ufw_leaseweb_deny.sh
#!/bin/bash # Leaseweb IP Ranges # Updated: 2026-07-12 03:17:58 # 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 leaseweb ufw deny from 2.56.100.0/24 ufw deny from 2.57.20.0/23 ufw deny from 2.59.20.0/24 ufw deny from 5.61.32.0/20 ufw deny from 5.79.64.0/18 ufw deny from 5.181.40.0/22 ufw deny from 5.188.222.0/24 ufw deny from 23.19.0.0/19 ufw deny from 23.19.32.0/21 ufw deny from 23.19.41.0/24 ufw deny from 23.19.44.0/22 ufw deny from 23.19.52.0/23 ufw deny from 23.19.56.0/21 ufw deny from 23.19.64.0/18 ufw deny from 23.19.128.0/20 ufw deny from 23.19.144.0/21 … (1357 more lines)