// AKAMAI / UFW
akamai · UFW
UFW (Uncomplicated Firewall) shell script for akamai. 11,134 CIDRs, refreshed daily.
// ufw_akamai_allow.sh
#!/bin/bash # Akamai IP Ranges # Updated: 2026-07-12 03:17:50 # 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 akamai ufw allow from 2.16.0.0/13 ufw allow from 14.136.149.0/24 ufw allow from 23.0.0.0/12 ufw allow from 23.32.0.0/11 ufw allow from 23.64.0.0/14 ufw allow from 23.72.0.0/13 ufw allow from 23.92.16.0/20 ufw allow from 23.192.0.0/11 ufw allow from 23.239.0.0/19 ufw allow from 27.105.82.0/24 ufw allow from 43.254.120.0/22 ufw allow from 45.33.0.0/17 ufw allow from 45.56.64.0/18 ufw allow from 45.79.0.0/18 ufw allow from 45.79.64.0/19 ufw allow from 45.79.96.0/20 … (583 more lines)
// ufw_akamai_deny.sh
#!/bin/bash # Akamai IP Ranges # Updated: 2026-07-12 03:17:50 # 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 akamai ufw deny from 2.16.0.0/13 ufw deny from 14.136.149.0/24 ufw deny from 23.0.0.0/12 ufw deny from 23.32.0.0/11 ufw deny from 23.64.0.0/14 ufw deny from 23.72.0.0/13 ufw deny from 23.92.16.0/20 ufw deny from 23.192.0.0/11 ufw deny from 23.239.0.0/19 ufw deny from 27.105.82.0/24 ufw deny from 43.254.120.0/22 ufw deny from 45.33.0.0/17 ufw deny from 45.56.64.0/18 ufw deny from 45.79.0.0/18 ufw deny from 45.79.64.0/19 ufw deny from 45.79.96.0/20 … (583 more lines)