// CIRCLECI / UFW
CircleCI · UFW
UFW (Uncomplicated Firewall) shell script for CircleCI. 47 CIDRs, refreshed daily.
// ufw_circleci_allow.sh
#!/bin/bash # Circleci IP Ranges # Updated: 2026-06-25 03:23:21 # 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 circleci ufw allow from 3.210.128.175/32 ufw allow from 3.228.39.90/32 ufw allow from 18.97.4.0/24 ufw allow from 18.97.6.0/23 ufw allow from 18.213.67.41/32 ufw allow from 18.214.70.5/32 ufw allow from 18.214.156.84/32 ufw allow from 34.194.94.201/32 ufw allow from 34.194.144.202/32 ufw allow from 34.197.6.234/32 ufw allow from 34.197.216.176/32 ufw allow from 35.169.17.173/32 ufw allow from 35.174.249.131/32 ufw allow from 35.174.253.146/32 ufw allow from 38.23.41.0/24 ufw allow from 38.23.42.0/23 … (26 more lines)
// ufw_circleci_deny.sh
#!/bin/bash # Circleci IP Ranges # Updated: 2026-06-25 03:23:21 # 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 circleci ufw deny from 3.210.128.175/32 ufw deny from 3.228.39.90/32 ufw deny from 18.97.4.0/24 ufw deny from 18.97.6.0/23 ufw deny from 18.213.67.41/32 ufw deny from 18.214.70.5/32 ufw deny from 18.214.156.84/32 ufw deny from 34.194.94.201/32 ufw deny from 34.194.144.202/32 ufw deny from 34.197.6.234/32 ufw deny from 34.197.216.176/32 ufw deny from 35.169.17.173/32 ufw deny from 35.174.249.131/32 ufw deny from 35.174.253.146/32 ufw deny from 38.23.41.0/24 ufw deny from 38.23.42.0/23 … (26 more lines)