// TENCENT / UFW
Tencent · UFW
UFW (Uncomplicated Firewall) shell script for Tencent. 3,389 CIDRs, refreshed daily.
// ufw_tencent_allow.sh
#!/bin/bash # Tencent IP Ranges # Updated: 2026-06-13 03:20:05 # 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 tencent ufw allow from 1.12.0.0/14 ufw allow from 1.12.0.0/18 ufw allow from 1.12.0.0/20 ufw allow from 1.12.14.0/23 ufw allow from 1.12.34.0/23 ufw allow from 1.12.64.0/18 ufw allow from 1.12.128.0/18 ufw allow from 1.12.192.0/18 ufw allow from 1.13.0.0/18 ufw allow from 1.13.64.0/18 ufw allow from 1.13.128.0/18 ufw allow from 1.13.148.0/24 ufw allow from 1.13.192.0/18 ufw allow from 1.14.0.0/18 ufw allow from 1.14.64.0/18 ufw allow from 1.14.128.0/18 … (3373 more lines)
// ufw_tencent_deny.sh
#!/bin/bash # Tencent IP Ranges # Updated: 2026-06-13 03:20:05 # 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 tencent ufw deny from 1.12.0.0/14 ufw deny from 1.12.0.0/18 ufw deny from 1.12.0.0/20 ufw deny from 1.12.14.0/23 ufw deny from 1.12.34.0/23 ufw deny from 1.12.64.0/18 ufw deny from 1.12.128.0/18 ufw deny from 1.12.192.0/18 ufw deny from 1.13.0.0/18 ufw deny from 1.13.64.0/18 ufw deny from 1.13.128.0/18 ufw deny from 1.13.148.0/24 ufw deny from 1.13.192.0/18 ufw deny from 1.14.0.0/18 ufw deny from 1.14.64.0/18 ufw deny from 1.14.128.0/18 … (3373 more lines)