// HUAWEI / UFW
huawei · UFW
UFW (Uncomplicated Firewall) shell script for huawei. 659 CIDRs, refreshed daily.
// ufw_huawei_allow.sh
#!/bin/bash # Huawei IP Ranges # Updated: 2026-07-12 03:18:08 # 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 huawei ufw allow from 1.178.32.0/19 ufw allow from 14.137.132.0/22 ufw allow from 14.137.136.0/21 ufw allow from 14.137.152.0/23 ufw allow from 14.137.155.0/24 ufw allow from 14.137.156.0/23 ufw allow from 14.137.161.0/24 ufw allow from 14.137.163.0/24 ufw allow from 14.137.164.0/24 ufw allow from 14.137.169.0/24 ufw allow from 14.137.170.0/23 ufw allow from 14.137.172.0/22 ufw allow from 27.106.0.0/17 ufw allow from 27.255.0.0/18 ufw allow from 42.201.128.0/17 ufw allow from 43.225.140.0/22 … (201 more lines)
// ufw_huawei_deny.sh
#!/bin/bash # Huawei IP Ranges # Updated: 2026-07-12 03:18:08 # 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 huawei ufw deny from 1.178.32.0/19 ufw deny from 14.137.132.0/22 ufw deny from 14.137.136.0/21 ufw deny from 14.137.152.0/23 ufw deny from 14.137.155.0/24 ufw deny from 14.137.156.0/23 ufw deny from 14.137.161.0/24 ufw deny from 14.137.163.0/24 ufw deny from 14.137.164.0/24 ufw deny from 14.137.169.0/24 ufw deny from 14.137.170.0/23 ufw deny from 14.137.172.0/22 ufw deny from 27.106.0.0/17 ufw deny from 27.255.0.0/18 ufw deny from 42.201.128.0/17 ufw deny from 43.225.140.0/22 … (201 more lines)