cloud-ip-ranges:~$

OVPN.com logo OVPN.com IP Ranges

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

Provider Information

Category
VPN & Networks
Official Website
https://www.ovpn.com
Total IP Ranges
96
96 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 96 ranges. Download the full list above, or search for a specific IP.

CIDR Type Region
5.181.234.131/32 ipv4 New York, USA
37.120.206.163/32 ipv4 Bucharest, Romania
37.120.208.35/32 ipv4 Singapore, Singapore
37.120.212.227/32 ipv4 Vienna, Austria
45.83.89.131/32 ipv4 Los Angeles, USA
45.134.140.67/32 ipv4 Atlanta, USA
45.134.142.3/32 ipv4 Miami, USA
45.141.152.68/32 ipv4 Frankfurt, Germany
45.141.152.69/32 ipv4 Frankfurt, Germany
45.148.17.36/32 ipv4 Sundsvall, Sweden
45.148.17.37/32 ipv4 Sundsvall, Sweden
45.148.17.38/32 ipv4 Sundsvall, Sweden
45.148.17.39/32 ipv4 Sundsvall, Sweden
45.148.18.35/32 ipv4 Oslo, Norway
45.148.18.36/32 ipv4 Oslo, Norway
45.148.18.37/32 ipv4 Oslo, Norway
46.246.34.51/32 ipv4 Helsinki, Finland
84.19.175.164/32 ipv4 Erfurt, Germany
87.249.134.67/32 ipv4 Chicago, USA
89.238.176.3/32 ipv4 London, Great Britain
94.198.96.163/32 ipv4 Milan, Italy
104.245.145.244/32 ipv4 Toronto, Canada
138.199.38.131/32 ipv4 Offenbach, Germany
138.199.38.149/32 ipv4 Offenbach, Germany
138.199.59.3/32 ipv4 Warsaw, Poland

Usage Examples - Blocking OVPN.com IPs

Download the IP ranges

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

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

Block with iptables (Linux firewall)

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

Block with UFW (Ubuntu/Debian firewall)

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

Block with fail2ban (intrusion prevention)

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

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

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

Block with pfSense/OPNsense (FreeBSD firewall)

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

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

About OVPN.com IP Ranges

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