// OVHCLOUD / UFW
OVHcloud · UFW
UFW (Uncomplicated Firewall) shell script for OVHcloud. 745 CIDRs, refreshed daily.
// ufw_ovhcloud_allow.sh
#!/bin/bash # Ovhcloud IP Ranges # Updated: 2026-07-29 03:14:47 # 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 ovhcloud ufw allow from 2.26.132.0/24 ufw allow from 2.26.153.0/24 ufw allow from 2.26.166.0/24 ufw allow from 2.27.97.0/24 ufw allow from 2.27.164.0/24 ufw allow from 2.58.172.0/24 ufw allow from 5.39.0.0/17 ufw allow from 5.135.0.0/16 ufw allow from 5.172.36.0/24 ufw allow from 5.175.162.0/24 ufw allow from 5.175.168.0/24 ufw allow from 5.175.195.0/24 ufw allow from 5.175.211.0/24 ufw allow from 5.178.106.0/24 ufw allow from 5.178.110.0/24 ufw allow from 5.182.19.0/24 … (591 more lines)
// ufw_ovhcloud_deny.sh
#!/bin/bash # Ovhcloud IP Ranges # Updated: 2026-07-29 03:14:47 # 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 ovhcloud ufw deny from 2.26.132.0/24 ufw deny from 2.26.153.0/24 ufw deny from 2.26.166.0/24 ufw deny from 2.27.97.0/24 ufw deny from 2.27.164.0/24 ufw deny from 2.58.172.0/24 ufw deny from 5.39.0.0/17 ufw deny from 5.135.0.0/16 ufw deny from 5.172.36.0/24 ufw deny from 5.175.162.0/24 ufw deny from 5.175.168.0/24 ufw deny from 5.175.195.0/24 ufw deny from 5.175.211.0/24 ufw deny from 5.178.106.0/24 ufw deny from 5.178.110.0/24 ufw deny from 5.182.19.0/24 … (591 more lines)