// APPLE PRIVATE RELAY / UFW
Apple Private Relay · UFW
UFW (Uncomplicated Firewall) shell script for Apple Private Relay. 286,965 CIDRs, refreshed daily.
// ufw_apple_private_relay_allow.sh
#!/bin/bash # Apple_private_relay IP Ranges # Updated: 2026-07-06 03:19:25 # 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 apple_private_relay ufw allow from 104.28.28.0/26 ufw allow from 104.28.28.64/29 ufw allow from 104.28.28.72/30 ufw allow from 104.28.28.76/32 ufw allow from 104.28.28.79/32 ufw allow from 104.28.28.80/32 ufw allow from 104.28.28.83/32 ufw allow from 104.28.28.84/30 ufw allow from 104.28.28.88/32 ufw allow from 104.28.28.91/32 ufw allow from 104.28.28.92/32 ufw allow from 104.28.28.95/32 ufw allow from 104.28.28.96/30 ufw allow from 104.28.28.100/32 ufw allow from 104.28.29.0/27 ufw allow from 104.28.29.32/28 … (13569 more lines)
// ufw_apple_private_relay_deny.sh
#!/bin/bash # Apple_private_relay IP Ranges # Updated: 2026-07-06 03:19:29 # 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 apple_private_relay ufw deny from 104.28.28.0/26 ufw deny from 104.28.28.64/29 ufw deny from 104.28.28.72/30 ufw deny from 104.28.28.76/32 ufw deny from 104.28.28.79/32 ufw deny from 104.28.28.80/32 ufw deny from 104.28.28.83/32 ufw deny from 104.28.28.84/30 ufw deny from 104.28.28.88/32 ufw deny from 104.28.28.91/32 ufw deny from 104.28.28.92/32 ufw deny from 104.28.28.95/32 ufw deny from 104.28.28.96/30 ufw deny from 104.28.28.100/32 ufw deny from 104.28.29.0/27 ufw deny from 104.28.29.32/28 … (13569 more lines)