// SALESFORCE / UFW
salesforce · UFW
UFW (Uncomplicated Firewall) shell script for salesforce. 62 CIDRs, refreshed daily.
// ufw_salesforce_allow.sh
#!/bin/bash # Salesforce IP Ranges # Updated: 2026-07-12 03:18:04 # 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 salesforce ufw allow from 13.108.0.0/14 ufw allow from 64.132.88.0/23 ufw allow from 64.132.92.0/24 ufw allow from 66.203.114.0/23 ufw allow from 66.231.80.0/20 ufw allow from 68.232.192.0/20 ufw allow from 85.222.128.0/19 ufw allow from 96.43.144.0/20 ufw allow from 101.53.160.0/19 ufw allow from 104.161.128.0/18 ufw allow from 104.161.232.0/22 ufw allow from 104.161.242.0/23 ufw allow from 104.161.244.0/22 ufw allow from 104.161.248.0/23 ufw allow from 104.161.252.0/23 ufw allow from 104.161.255.0/24 … (26 more lines)
// ufw_salesforce_deny.sh
#!/bin/bash # Salesforce IP Ranges # Updated: 2026-07-12 03:18:04 # 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 salesforce ufw deny from 13.108.0.0/14 ufw deny from 64.132.88.0/23 ufw deny from 64.132.92.0/24 ufw deny from 66.203.114.0/23 ufw deny from 66.231.80.0/20 ufw deny from 68.232.192.0/20 ufw deny from 85.222.128.0/19 ufw deny from 96.43.144.0/20 ufw deny from 101.53.160.0/19 ufw deny from 104.161.128.0/18 ufw deny from 104.161.232.0/22 ufw deny from 104.161.242.0/23 ufw deny from 104.161.244.0/22 ufw deny from 104.161.248.0/23 ufw deny from 104.161.252.0/23 ufw deny from 104.161.255.0/24 … (26 more lines)