// TOR EXIT NODES / UFW
Tor Exit Nodes · UFW
UFW (Uncomplicated Firewall) shell script for Tor Exit Nodes. 1,262 CIDRs, refreshed daily.
// ufw_tor_allow.sh
#!/bin/bash # Tor IP Ranges # Updated: 2026-06-13 03:20:06 # 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 tor ufw allow from 2.27.63.137/32 ufw allow from 2.56.10.36/32 ufw allow from 5.2.67.226/32 ufw allow from 5.44.252.164/32 ufw allow from 5.45.98.162/32 ufw allow from 5.45.102.93/32 ufw allow from 5.45.104.176/32 ufw allow from 5.79.66.19/32 ufw allow from 5.83.143.18/32 ufw allow from 5.104.84.183/32 ufw allow from 5.104.86.6/32 ufw allow from 5.175.225.43/32 ufw allow from 5.252.154.89/32 ufw allow from 5.253.247.27/32 ufw allow from 5.255.98.151/32 ufw allow from 5.255.101.10/32 … (1246 more lines)
// ufw_tor_deny.sh
#!/bin/bash # Tor IP Ranges # Updated: 2026-06-13 03:20:06 # 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 tor ufw deny from 2.27.63.137/32 ufw deny from 2.56.10.36/32 ufw deny from 5.2.67.226/32 ufw deny from 5.44.252.164/32 ufw deny from 5.45.98.162/32 ufw deny from 5.45.102.93/32 ufw deny from 5.45.104.176/32 ufw deny from 5.79.66.19/32 ufw deny from 5.83.143.18/32 ufw deny from 5.104.84.183/32 ufw deny from 5.104.86.6/32 ufw deny from 5.175.225.43/32 ufw deny from 5.252.154.89/32 ufw deny from 5.253.247.27/32 ufw deny from 5.255.98.151/32 ufw deny from 5.255.101.10/32 … (1246 more lines)