// DATADOG / UFW
datadog · UFW
UFW (Uncomplicated Firewall) shell script for datadog. 166 CIDRs, refreshed daily.
// ufw_datadog_allow.sh
#!/bin/bash # Datadog IP Ranges # Updated: 2026-06-14 03:22:17 # 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 datadog ufw allow from 3.1.36.99/32 ufw allow from 3.1.219.207/32 ufw allow from 3.18.172.189/32 ufw allow from 3.18.188.104/32 ufw allow from 3.18.197.0/32 ufw allow from 3.35.66.96/32 ufw allow from 3.36.177.119/32 ufw allow from 3.40.2.64/29 ufw allow from 3.40.134.72/29 ufw allow from 3.41.0.88/29 ufw allow from 3.41.176.48/29 ufw allow from 3.42.136.80/29 ufw allow from 3.44.192.120/29 ufw allow from 3.45.0.40/29 ufw allow from 3.90.129.171/32 ufw allow from 3.92.150.182/32 … (150 more lines)
// ufw_datadog_deny.sh
#!/bin/bash # Datadog IP Ranges # Updated: 2026-06-14 03:22:17 # 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 datadog ufw deny from 3.1.36.99/32 ufw deny from 3.1.219.207/32 ufw deny from 3.18.172.189/32 ufw deny from 3.18.188.104/32 ufw deny from 3.18.197.0/32 ufw deny from 3.35.66.96/32 ufw deny from 3.36.177.119/32 ufw deny from 3.40.2.64/29 ufw deny from 3.40.134.72/29 ufw deny from 3.41.0.88/29 ufw deny from 3.41.176.48/29 ufw deny from 3.42.136.80/29 ufw deny from 3.44.192.120/29 ufw deny from 3.45.0.40/29 ufw deny from 3.90.129.171/32 ufw deny from 3.92.150.182/32 … (150 more lines)