Download current IP ranges (CIDRs) used by the NHN Cloud infrastructure.
Choose your preferred format. All downloads are permalinks that always provide the latest data.
First 25 of 373 ranges. Download the full list above, or search for a specific IP.
| CIDR | Type | Tag |
|---|---|---|
| 1.209.199.0/24 | ipv4 | AS45974 |
| 43.227.116.0/22 | ipv4 | AS45974 |
| 43.227.116.0/24 | ipv4 | AS45974 |
| 43.227.117.0/24 | ipv4 | AS45974 |
| 43.227.118.0/24 | ipv4 | AS45974 |
| 43.227.119.0/24 | ipv4 | AS45974 |
| 43.254.244.0/24 | ipv4 | AS45974 |
| 45.125.232.0/22 | ipv4 | AS45974 |
| 45.125.232.0/24 | ipv4 | AS45974 |
| 45.125.233.0/24 | ipv4 | AS45974 |
| 45.125.234.0/24 | ipv4 | AS45974 |
| 45.125.235.0/24 | ipv4 | AS45974 |
| 45.249.160.0/24 | ipv4 | AS45974 |
| 45.249.161.0/24 | ipv4 | AS45974 |
| 45.249.162.0/24 | ipv4 | AS45974 |
| 45.249.163.0/24 | ipv4 | AS45974 |
| 59.150.32.0/24 | ipv4 | AS152291 |
| 59.150.33.0/24 | ipv4 | AS152291 |
| 59.150.34.0/24 | ipv4 | AS152291 |
| 59.150.35.0/24 | ipv4 | AS152291 |
| 59.150.36.0/24 | ipv4 | AS152291 |
| 59.150.37.0/24 | ipv4 | AS152291 |
| 61.42.226.0/24 | ipv4 | AS45974 |
| 61.111.36.0/24 | ipv4 | AS45974 |
| 61.111.37.0/24 | ipv4 | AS45974 |
# Download with curl
curl -O https://cloud-ip-ranges.com/download/nhn-cloud.txt
# Or download with wget
wget https://cloud-ip-ranges.com/download/nhn-cloud.txt
# Download and block NHN Cloud IPs with iptables
wget -O nhn-cloud_ips.txt https://cloud-ip-ranges.com/download/nhn-cloud.txt
while read ip; do
iptables -A INPUT -s $ip -j DROP
iptables -A OUTPUT -d $ip -j DROP
done < nhn-cloud_ips.txt
# Download and block NHN Cloud IPs with UFW
wget -O nhn-cloud_ips.txt https://cloud-ip-ranges.com/download/nhn-cloud.txt
while read ip; do
ufw deny from $ip
ufw deny to $ip
done < nhn-cloud_ips.txt
# Create fail2ban filter for NHN Cloud
sudo tee /etc/fail2ban/filter.d/nhn-cloud-block.conf << EOF
[Definition]
failregex = ^.*$
ignoreregex =
EOF
# Create jail configuration
sudo tee /etc/fail2ban/jail.d/nhn-cloud-block.conf << EOF
[nhn-cloud-block]
enabled = true
filter = nhn-cloud-block
action = iptables-allports[name=nhn-cloud]
logpath = /tmp/nhn-cloud_ips.txt
findtime = 1
bantime = -1
maxretry = 1
EOF
# Download IP list and restart fail2ban
wget -O /tmp/nhn-cloud_ips.txt https://cloud-ip-ranges.com/download/nhn-cloud.txt
sudo systemctl restart fail2ban
# Create alias table for NHN Cloud IPs
# 1. Download the IP list
wget -O nhn-cloud_ips.txt https://cloud-ip-ranges.com/download/nhn-cloud.txt
# 2. In pfSense/OPNsense web interface:
# - Go to Firewall > Aliases
# - Create new alias named "NHN-CLOUD_BLOCK"
# - Type: Network(s)
# - Import the downloaded file
#
# 3. Create firewall rule:
# - Go to Firewall > Rules > WAN
# - Add rule: Action=Block, Source=NHN-CLOUD_BLOCK
These IP ranges are sourced directly from NHN Cloud's official feeds and are updated regularly to ensure accuracy. The data includes IPv4 and IPv6 ranges used by NHN Cloud's infrastructure worldwide. Last update was about 5 hours ago.