// ORACLE CLOUD / UFW
Oracle Cloud · UFW
UFW (Uncomplicated Firewall) shell script for Oracle Cloud. 1,078 CIDRs, refreshed daily.
// ufw_oracle_allow.sh
#!/bin/bash # Oracle IP Ranges # Updated: 2026-04-29 00:41:06 # 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 00:00 UTC # UFW allow rules for oracle ufw allow from 40.233.0.0/19 ufw allow from 139.177.96.0/21 ufw allow from 157.137.160.0/19 ufw allow from 64.181.146.0/23 ufw allow from 134.70.200.0/23 ufw allow from 139.177.104.0/22 ufw allow from 139.177.108.0/25 ufw allow from 140.91.90.0/23 ufw allow from 140.204.132.128/25 ufw allow from 157.137.253.0/24 ufw allow from 40.233.64.0/18 ufw allow from 129.153.48.0/20 ufw allow from 132.145.96.0/20 ufw allow from 140.238.128.0/19 ufw allow from 147.5.96.0/19 ufw allow from 147.15.184.0/21 … (1062 more lines)
// ufw_oracle_deny.sh
#!/bin/bash # Oracle IP Ranges # Updated: 2026-04-29 00:41:06 # 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 00:00 UTC # UFW deny rules for oracle ufw deny from 40.233.0.0/19 ufw deny from 139.177.96.0/21 ufw deny from 157.137.160.0/19 ufw deny from 64.181.146.0/23 ufw deny from 134.70.200.0/23 ufw deny from 139.177.104.0/22 ufw deny from 139.177.108.0/25 ufw deny from 140.91.90.0/23 ufw deny from 140.204.132.128/25 ufw deny from 157.137.253.0/24 ufw deny from 40.233.64.0/18 ufw deny from 129.153.48.0/20 ufw deny from 132.145.96.0/20 ufw deny from 140.238.128.0/19 ufw deny from 147.5.96.0/19 ufw deny from 147.15.184.0/21 … (1062 more lines)