// NHNCLOUD / UFW
nhncloud · UFW
UFW (Uncomplicated Firewall) shell script for nhncloud. 372 CIDRs, refreshed daily.
// ufw_nhncloud_allow.sh
#!/bin/bash # Nhncloud IP Ranges # Updated: 2026-07-12 03:46:27 # 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 nhncloud ufw allow from 1.209.199.0/24 ufw allow from 43.227.116.0/22 ufw allow from 43.254.244.0/24 ufw allow from 45.125.232.0/22 ufw allow from 45.249.160.0/22 ufw allow from 59.150.32.0/22 ufw allow from 59.150.36.0/23 ufw allow from 61.42.226.0/24 ufw allow from 61.111.36.0/22 ufw allow from 101.79.68.0/22 ufw allow from 101.79.80.0/21 ufw allow from 101.79.92.0/22 ufw allow from 103.87.116.0/22 ufw allow from 103.132.32.0/22 ufw allow from 103.194.108.0/22 ufw allow from 103.218.156.0/22 … (74 more lines)
// ufw_nhncloud_deny.sh
#!/bin/bash # Nhncloud IP Ranges # Updated: 2026-07-12 03:46:27 # 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 nhncloud ufw deny from 1.209.199.0/24 ufw deny from 43.227.116.0/22 ufw deny from 43.254.244.0/24 ufw deny from 45.125.232.0/22 ufw deny from 45.249.160.0/22 ufw deny from 59.150.32.0/22 ufw deny from 59.150.36.0/23 ufw deny from 61.42.226.0/24 ufw deny from 61.111.36.0/22 ufw deny from 101.79.68.0/22 ufw deny from 101.79.80.0/21 ufw deny from 101.79.92.0/22 ufw deny from 103.87.116.0/22 ufw deny from 103.132.32.0/22 ufw deny from 103.194.108.0/22 ufw deny from 103.218.156.0/22 … (74 more lines)