// COMMON CRAWL / UFW
Common Crawl · UFW
UFW (Uncomplicated Firewall) shell script for Common Crawl. 6 CIDRs, refreshed daily.
// ufw_commoncrawl_allow.sh
#!/bin/bash # Commoncrawl IP Ranges # Updated: 2026-05-16 03:17:36 # 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 commoncrawl ufw allow from 2600:1f28:365:80b0::/60 ufw allow from 3.41.188.32/29 ufw allow from 18.97.9.168/29 ufw allow from 18.97.14.80/29 ufw allow from 18.97.14.88/30 ufw allow from 98.85.178.216/32
// ufw_commoncrawl_deny.sh
#!/bin/bash # Commoncrawl IP Ranges # Updated: 2026-05-16 03:17:36 # 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 commoncrawl ufw deny from 2600:1f28:365:80b0::/60 ufw deny from 3.41.188.32/29 ufw deny from 18.97.9.168/29 ufw deny from 18.97.14.80/29 ufw deny from 18.97.14.88/30 ufw deny from 98.85.178.216/32