cloud-ip-ranges:~$

IVPN logo IVPN IP Ranges

Download current IP ranges (CIDRs) used by the IVPN network.

Provider Information

Category
VPN & Networks
Official Website
https://www.ivpn.net
Total IP Ranges
264
264 IPv4 · 0 IPv6
Last Updated
Total Downloads
9

Download Options

Choose your preferred format. All downloads are permalinks that always provide the latest data.

IP Ranges

First 25 of 264 ranges. Download the full list above, or search for a specific IP.

CIDR Type Region Tag
37.19.206.105/32 ipv4 Ashburn, VA, United States openvpn
37.19.206.106/32 ipv4 Ashburn, VA, United States wireguard
37.19.206.111/32 ipv4 Ashburn, VA, United States wireguard, v2ray
37.58.60.151/32 ipv4 Frankfurt, Germany wireguard
37.120.130.58/32 ipv4 Montreal, Canada wireguard
37.120.130.60/32 ipv4 Montreal, Canada openvpn
37.120.130.61/32 ipv4 Montreal, Canada wireguard, v2ray
37.120.143.130/32 ipv4 Brussels, Belgium wireguard, v2ray
37.120.144.178/32 ipv4 Budapest, Hungary wireguard, v2ray
37.120.151.122/32 ipv4 Singapore, Singapore wireguard
37.120.151.124/32 ipv4 Singapore, Singapore openvpn
37.120.151.125/32 ipv4 Singapore, Singapore wireguard, v2ray
37.120.153.226/32 ipv4 Stockholm, Sweden wireguard
37.120.153.227/32 ipv4 Stockholm, Sweden wireguard, v2ray
37.120.153.228/32 ipv4 Stockholm, Sweden openvpn
37.120.202.42/32 ipv4 Secaucus, NJ, United States wireguard, v2ray
37.120.206.50/32 ipv4 Bucharest, Romania openvpn
37.120.206.53/32 ipv4 Bucharest, Romania wireguard
37.120.213.138/32 ipv4 Zurich, Switzerland wireguard, v2ray
45.133.193.66/32 ipv4 Reykjavik, Iceland openvpn
45.133.193.71/32 ipv4 Reykjavik, Iceland wireguard, v2ray
45.133.193.73/32 ipv4 Reykjavik, Iceland wireguard
45.162.230.50/32 ipv4 Franca, Brazil openvpn
45.162.230.53/32 ipv4 Franca, Brazil wireguard
45.162.230.186/32 ipv4 Franca, Brazil wireguard, v2ray

Usage Examples - Blocking IVPN IPs

Download the IP ranges

# Download with curl
curl -O https://cloud-ip-ranges.com/download/ivpn.txt

# Or download with wget
wget https://cloud-ip-ranges.com/download/ivpn.txt

Block with iptables (Linux firewall)

# Download and block IVPN IPs with iptables
wget -O ivpn_ips.txt https://cloud-ip-ranges.com/download/ivpn.txt
while read ip; do
  iptables -A INPUT -s $ip -j DROP
  iptables -A OUTPUT -d $ip -j DROP
done < ivpn_ips.txt

Block with UFW (Ubuntu/Debian firewall)

# Download and block IVPN IPs with UFW
wget -O ivpn_ips.txt https://cloud-ip-ranges.com/download/ivpn.txt
while read ip; do
  ufw deny from $ip
  ufw deny to $ip
done < ivpn_ips.txt

Block with fail2ban (intrusion prevention)

# Create fail2ban filter for IVPN
sudo tee /etc/fail2ban/filter.d/ivpn-block.conf << EOF
[Definition]
failregex = ^.*$
ignoreregex =
EOF

# Create jail configuration
sudo tee /etc/fail2ban/jail.d/ivpn-block.conf << EOF
[ivpn-block]
enabled = true
filter = ivpn-block
action = iptables-allports[name=ivpn]
logpath = /tmp/ivpn_ips.txt
findtime = 1
bantime = -1
maxretry = 1
EOF

# Download IP list and restart fail2ban
wget -O /tmp/ivpn_ips.txt https://cloud-ip-ranges.com/download/ivpn.txt
sudo systemctl restart fail2ban

Block with pfSense/OPNsense (FreeBSD firewall)

# Create alias table for IVPN IPs
# 1. Download the IP list
wget -O ivpn_ips.txt https://cloud-ip-ranges.com/download/ivpn.txt

# 2. In pfSense/OPNsense web interface:
# - Go to Firewall > Aliases
# - Create new alias named "IVPN_BLOCK"
# - Type: Network(s)
# - Import the downloaded file
#
# 3. Create firewall rule:
# - Go to Firewall > Rules > WAN
# - Add rule: Action=Block, Source=IVPN_BLOCK

About IVPN IP Ranges

These IP ranges cover the IVPN network and are updated regularly from its official source. The data includes IPv4 and IPv6 ranges. Last update was about 3 hours ago.