// UPCLOUD / UFW
upcloud · UFW
UFW (Uncomplicated Firewall) shell script for upcloud. 107 CIDRs, refreshed daily.
// ufw_upcloud_allow.sh
#!/bin/bash # Upcloud IP Ranges # Updated: 2026-07-12 03:46:24 # 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 upcloud ufw allow from 5.22.208.0/20 ufw allow from 5.57.208.0/24 ufw allow from 5.253.32.0/22 ufw allow from 38.100.118.0/23 ufw allow from 62.164.153.0/24 ufw allow from 77.81.0.0/24 ufw allow from 80.69.172.0/22 ufw allow from 81.27.96.0/20 ufw allow from 83.136.248.0/21 ufw allow from 85.9.192.0/19 ufw allow from 87.58.144.0/20 ufw allow from 94.237.0.0/18 ufw allow from 94.237.64.0/19 ufw allow from 94.237.96.0/20 ufw allow from 94.237.112.0/21 ufw allow from 94.237.120.0/22 … (30 more lines)
// ufw_upcloud_deny.sh
#!/bin/bash # Upcloud IP Ranges # Updated: 2026-07-12 03:46:24 # 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 upcloud ufw deny from 5.22.208.0/20 ufw deny from 5.57.208.0/24 ufw deny from 5.253.32.0/22 ufw deny from 38.100.118.0/23 ufw deny from 62.164.153.0/24 ufw deny from 77.81.0.0/24 ufw deny from 80.69.172.0/22 ufw deny from 81.27.96.0/20 ufw deny from 83.136.248.0/21 ufw deny from 85.9.192.0/19 ufw deny from 87.58.144.0/20 ufw deny from 94.237.0.0/18 ufw deny from 94.237.64.0/19 ufw deny from 94.237.96.0/20 ufw deny from 94.237.112.0/21 ufw deny from 94.237.120.0/22 … (30 more lines)