// ORACLE CLOUD / UFW
Oracle Cloud · UFW
UFW (Uncomplicated Firewall) shell script for Oracle Cloud. 1,089 CIDRs, refreshed daily.
// ufw_oracle_allow.sh
#!/bin/bash # Oracle IP Ranges # Updated: 2026-06-25 03:20:07 # 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 oracle ufw allow from 38.104.155.92/31 ufw allow from 40.233.0.0/19 ufw allow from 40.233.64.0/18 ufw allow from 51.170.32.0/19 ufw allow from 51.170.80.0/20 ufw allow from 51.170.128.0/20 ufw allow from 51.170.152.0/21 ufw allow from 62.115.179.220/31 ufw allow from 62.115.179.228/31 ufw allow from 64.110.64.0/18 ufw allow from 64.181.132.0/24 ufw allow from 64.181.136.0/22 ufw allow from 64.181.140.0/23 ufw allow from 64.181.144.0/22 ufw allow from 64.181.150.0/23 ufw allow from 64.181.152.0/21 … (765 more lines)
// ufw_oracle_deny.sh
#!/bin/bash # Oracle IP Ranges # Updated: 2026-06-25 03:20:07 # 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 oracle ufw deny from 38.104.155.92/31 ufw deny from 40.233.0.0/19 ufw deny from 40.233.64.0/18 ufw deny from 51.170.32.0/19 ufw deny from 51.170.80.0/20 ufw deny from 51.170.128.0/20 ufw deny from 51.170.152.0/21 ufw deny from 62.115.179.220/31 ufw deny from 62.115.179.228/31 ufw deny from 64.110.64.0/18 ufw deny from 64.181.132.0/24 ufw deny from 64.181.136.0/22 ufw deny from 64.181.140.0/23 ufw deny from 64.181.144.0/22 ufw deny from 64.181.150.0/23 ufw deny from 64.181.152.0/21 … (765 more lines)