// TENCENT / UFW
Tencent · UFW
UFW (Uncomplicated Firewall) shell script for Tencent. 3,405 CIDRs, refreshed daily.
// ufw_tencent_allow.sh
#!/bin/bash # Tencent IP Ranges # Updated: 2026-07-25 03:14:53 # 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 tencent ufw allow from 1.12.0.0/14 ufw allow from 1.116.0.0/15 ufw allow from 1.201.184.0/22 ufw allow from 1.201.188.0/23 ufw allow from 42.187.128.0/17 ufw allow from 42.192.0.0/15 ufw allow from 42.194.128.0/17 ufw allow from 43.128.0.0/17 ufw allow from 43.128.128.0/19 ufw allow from 43.128.192.0/18 ufw allow from 43.129.0.0/16 ufw allow from 43.130.0.0/17 ufw allow from 43.130.128.0/18 ufw allow from 43.130.224.0/19 ufw allow from 43.131.0.0/18 ufw allow from 43.131.224.0/19 … (239 more lines)
// ufw_tencent_deny.sh
#!/bin/bash # Tencent IP Ranges # Updated: 2026-07-25 03:14:53 # 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 tencent ufw deny from 1.12.0.0/14 ufw deny from 1.116.0.0/15 ufw deny from 1.201.184.0/22 ufw deny from 1.201.188.0/23 ufw deny from 42.187.128.0/17 ufw deny from 42.192.0.0/15 ufw deny from 42.194.128.0/17 ufw deny from 43.128.0.0/17 ufw deny from 43.128.128.0/19 ufw deny from 43.128.192.0/18 ufw deny from 43.129.0.0/16 ufw deny from 43.130.0.0/17 ufw deny from 43.130.128.0/18 ufw deny from 43.130.224.0/19 ufw deny from 43.131.0.0/18 ufw deny from 43.131.224.0/19 … (239 more lines)