Download current IP ranges (CIDRs) used by the Meta cloud infrastructure.
Choose your preferred format. All downloads are permalinks that always provide the latest data.
Sample of 25 from 761 ranges. Download the full list above, or search for a specific IP.
| CIDR | Type | Tag |
|---|---|---|
| 31.13.24.0/21 | ipv4 | AS32934 |
| 31.13.64.0/18 | ipv4 | AS32934 |
| 31.13.64.0/24 | ipv4 | AS32934 |
| 31.13.66.0/24 | ipv4 | AS32934 |
| 31.13.69.0/24 | ipv4 | AS32934 |
| 2620:0:1c00::/40 | ipv6 | AS32934 |
| 2a03:2880::/32 | ipv6 | AS32934 |
| 2a03:2880::/36 | ipv6 | AS32934 |
| 2a03:2880:1000::/36 | ipv6 | AS32934 |
| 163.114.128.0/20 | ipv4 | AS54115 |
| 163.114.128.0/24 | ipv4 | AS54115 |
| 163.114.129.0/24 | ipv4 | AS54115 |
| 163.114.130.0/24 | ipv4 | AS54115 |
| 2620:10d:c090::/44 | ipv6 | AS54115 |
| 2620:10d:c090::/48 | ipv6 | AS54115 |
| 2620:10d:c091::/48 | ipv6 | AS54115 |
| 2620:10d:c092::/48 | ipv6 | AS54115 |
| 102.132.112.0/24 | ipv4 | AS63293 |
| 102.132.115.0/24 | ipv4 | AS63293 |
| 102.132.116.0/24 | ipv4 | AS63293 |
| 102.132.117.0/24 | ipv4 | AS63293 |
| 2a03:2887:ff00::/48 | ipv6 | AS63293 |
| 2a03:2887:ff02::/48 | ipv6 | AS63293 |
| 2a03:2887:ff03::/48 | ipv6 | AS63293 |
| 2a03:2887:ff04::/48 | ipv6 | AS63293 |
# Download with curl
curl -O https://cloud-ip-ranges.com/download/meta.txt
# Or download with wget
wget https://cloud-ip-ranges.com/download/meta.txt
# Download and block Meta IPs with iptables
wget -O meta_ips.txt https://cloud-ip-ranges.com/download/meta.txt
while read ip; do
iptables -A INPUT -s $ip -j DROP
iptables -A OUTPUT -d $ip -j DROP
done < meta_ips.txt
# Download and block Meta IPs with UFW
wget -O meta_ips.txt https://cloud-ip-ranges.com/download/meta.txt
while read ip; do
ufw deny from $ip
ufw deny to $ip
done < meta_ips.txt
# Create fail2ban filter for Meta
sudo tee /etc/fail2ban/filter.d/meta-block.conf << EOF
[Definition]
failregex = ^.*$
ignoreregex =
EOF
# Create jail configuration
sudo tee /etc/fail2ban/jail.d/meta-block.conf << EOF
[meta-block]
enabled = true
filter = meta-block
action = iptables-allports[name=meta]
logpath = /tmp/meta_ips.txt
findtime = 1
bantime = -1
maxretry = 1
EOF
# Download IP list and restart fail2ban
wget -O /tmp/meta_ips.txt https://cloud-ip-ranges.com/download/meta.txt
sudo systemctl restart fail2ban
# Create alias table for Meta IPs
# 1. Download the IP list
wget -O meta_ips.txt https://cloud-ip-ranges.com/download/meta.txt
# 2. In pfSense/OPNsense web interface:
# - Go to Firewall > Aliases
# - Create new alias named "META_BLOCK"
# - Type: Network(s)
# - Import the downloaded file
#
# 3. Create firewall rule:
# - Go to Firewall > Rules > WAN
# - Add rule: Action=Block, Source=META_BLOCK
These IP ranges are sourced directly from Meta's official feeds and are updated regularly to ensure accuracy. The data includes IPv4 and IPv6 ranges used by Meta's infrastructure worldwide. Last update was 11 minutes ago.