// DISCORD / UFW
Discord · UFW
UFW (Uncomplicated Firewall) shell script for Discord. 20 CIDRs, refreshed daily.
// ufw_discord_allow.sh
#!/bin/bash # Discord IP Ranges # Updated: 2026-09-20 02:33: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 02:00 UTC # UFW allow rules for discord ufw allow from 34.73.62.161/32 ufw allow from 34.74.100.84/32 ufw allow from 34.74.113.139/32 ufw allow from 34.75.19.245/32 ufw allow from 34.138.20.118/32 ufw allow from 34.138.218.50/32 ufw allow from 34.139.115.226/32 ufw allow from 34.148.171.212/32 ufw allow from 35.190.130.193/32 ufw allow from 35.196.132.85/32 ufw allow from 35.227.34.53/32 ufw allow from 35.227.62.178/32 ufw allow from 35.231.24.24/32 ufw allow from 35.231.179.220/32 ufw allow from 35.237.4.214/32 ufw allow from 35.237.58.227/32 … (4 more lines)
// ufw_discord_deny.sh
#!/bin/bash # Discord IP Ranges # Updated: 2026-09-20 02:33: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 02:00 UTC # UFW deny rules for discord ufw deny from 34.73.62.161/32 ufw deny from 34.74.100.84/32 ufw deny from 34.74.113.139/32 ufw deny from 34.75.19.245/32 ufw deny from 34.138.20.118/32 ufw deny from 34.138.218.50/32 ufw deny from 34.139.115.226/32 ufw deny from 34.148.171.212/32 ufw deny from 35.190.130.193/32 ufw deny from 35.196.132.85/32 ufw deny from 35.227.34.53/32 ufw deny from 35.227.62.178/32 ufw deny from 35.231.24.24/32 ufw deny from 35.231.179.220/32 ufw deny from 35.237.4.214/32 ufw deny from 35.237.58.227/32 … (4 more lines)