cloud-ip-ranges:~$

AirVPN logo AirVPN IP Ranges

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

Provider Information

Category
VPN & Networks
Official Website
https://airvpn.org
Total IP Ranges
2,056
1,028 IPv4 · 1,028 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 2,056 ranges. Download the full list above, or search for a specific IP.

CIDR Type Region
23.130.104.129/32 ipv4 Fremont, California, United States
23.130.104.131/32 ipv4 Fremont, California, United States
23.130.104.132/32 ipv4 Fremont, California, United States
23.130.104.133/32 ipv4 Fremont, California, United States
31.3.152.99/32 ipv4 Stockholm, Sweden
31.3.152.101/32 ipv4 Stockholm, Sweden
31.3.152.102/32 ipv4 Stockholm, Sweden
31.3.152.103/32 ipv4 Stockholm, Sweden
37.46.196.18/32 ipv4 Bucharest, Romania
37.46.196.19/32 ipv4 Bucharest, Romania
37.46.196.20/32 ipv4 Bucharest, Romania
37.46.196.21/32 ipv4 Bucharest, Romania
37.46.199.50/32 ipv4 Frankfurt, Germany
37.46.199.51/32 ipv4 Frankfurt, Germany
37.46.199.52/32 ipv4 Frankfurt, Germany
37.46.199.53/32 ipv4 Frankfurt, Germany
37.46.199.66/32 ipv4 Frankfurt, Germany
37.46.199.67/32 ipv4 Frankfurt, Germany
37.46.199.68/32 ipv4 Frankfurt, Germany
37.46.199.69/32 ipv4 Frankfurt, Germany
37.46.199.82/32 ipv4 Frankfurt, Germany
37.46.199.83/32 ipv4 Frankfurt, Germany
37.46.199.84/32 ipv4 Frankfurt, Germany
37.46.199.85/32 ipv4 Frankfurt, Germany
37.77.56.242/32 ipv4 Tallinn, Estonia

Usage Examples - Blocking AirVPN IPs

Download the IP ranges

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

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

Block with iptables (Linux firewall)

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

Block with UFW (Ubuntu/Debian firewall)

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

Block with fail2ban (intrusion prevention)

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

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

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

Block with pfSense/OPNsense (FreeBSD firewall)

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

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

About AirVPN IP Ranges

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