cloud-ip-ranges:~$

Linode logo Linode IP Ranges

Download current IP ranges (CIDRs) used by the Linode cloud infrastructure.

Provider Information

Official Website
https://linode.com
Total IP Ranges
5,534
5,434 IPv4 · 100 IPv6
Last Updated
Total Downloads
25,159

Download Options

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

IP Ranges

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

CIDR Type Region Tag
23.92.16.0/24 ipv4 US-NJ Cedar Knolls
23.92.17.0/24 ipv4 US-NJ Cedar Knolls
23.92.18.0/24 ipv4 US-NJ Cedar Knolls
23.92.19.0/24 ipv4 US-NJ Cedar Knolls
23.92.20.0/24 ipv4 US-NJ Cedar Knolls
23.92.21.0/24 ipv4 US-NJ Cedar Knolls
23.92.22.0/24 ipv4 US-NJ Cedar Knolls
23.92.23.0/24 ipv4 US-NJ Cedar Knolls
23.92.24.0/24 ipv4 US-CA Fremont
23.92.25.0/24 ipv4 US-CA Fremont
23.92.26.0/24 ipv4 US-CA Fremont
23.92.27.0/24 ipv4 US-CA Fremont
23.92.28.0/24 ipv4 US-GA Atlanta
23.92.29.0/24 ipv4 US-GA Atlanta
23.92.30.0/24 ipv4 US-GA Atlanta
23.92.31.0/24 ipv4 US-GA Atlanta
23.239.0.0/24 ipv4 US-CA Fremont
23.239.1.0/24 ipv4 US-CA Fremont
23.239.2.0/24 ipv4 US-CA Fremont
23.239.3.0/24 ipv4 US-CA Fremont
23.239.4.0/24 ipv4 US-CA Fremont
23.239.5.0/24 ipv4 US-CA Fremont
23.239.6.0/24 ipv4 US-CA Fremont
23.239.7.0/24 ipv4 US-CA Fremont
23.239.8.0/24 ipv4 US-NJ Cedar Knolls

Usage Examples - Blocking Linode IPs

Download the IP ranges

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

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

Block with iptables (Linux firewall)

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

Block with UFW (Ubuntu/Debian firewall)

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

Block with fail2ban (intrusion prevention)

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

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

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

Block with pfSense/OPNsense (FreeBSD firewall)

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

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

About Linode IP Ranges

These IP ranges are sourced directly from Linode's official feeds and are updated regularly to ensure accuracy. The data includes IPv4 and IPv6 ranges used by Linode's infrastructure worldwide. Last update was about 9 hours ago.