// META (FACEBOOK) / UFW
Meta (Facebook) · UFW
UFW (Uncomplicated Firewall) shell script for Meta (Facebook). 761 CIDRs, refreshed daily.
// ufw_meta_allow.sh
#!/bin/bash # Meta IP Ranges # Updated: 2026-06-11 03:19:39 # Source: https://github.com/rezmoss/cloud-provider-ip-addresses # License: https://github.com/rezmoss/cloud-provider-ip-addresses/LICENSE # This file is generated automatically. Do not edit it directly. # Updates daily at 00:00 UTC # UFW allow rules for meta ufw allow from 31.13.24.0/21 ufw allow from 31.13.64.0/18 ufw allow from 31.13.64.0/24 ufw allow from 31.13.66.0/24 ufw allow from 31.13.69.0/24 ufw allow from 31.13.70.0/24 ufw allow from 31.13.71.0/24 ufw allow from 31.13.72.0/24 ufw allow from 31.13.73.0/24 ufw allow from 31.13.80.0/24 ufw allow from 31.13.82.0/24 ufw allow from 31.13.83.0/24 ufw allow from 31.13.84.0/24 ufw allow from 31.13.86.0/24 ufw allow from 31.13.87.0/24 ufw allow from 31.13.89.0/24 … (745 more lines)
// ufw_meta_deny.sh
#!/bin/bash # Meta IP Ranges # Updated: 2026-06-11 03:19:39 # Source: https://github.com/rezmoss/cloud-provider-ip-addresses # License: https://github.com/rezmoss/cloud-provider-ip-addresses/LICENSE # This file is generated automatically. Do not edit it directly. # Updates daily at 00:00 UTC # UFW deny rules for meta ufw deny from 31.13.24.0/21 ufw deny from 31.13.64.0/18 ufw deny from 31.13.64.0/24 ufw deny from 31.13.66.0/24 ufw deny from 31.13.69.0/24 ufw deny from 31.13.70.0/24 ufw deny from 31.13.71.0/24 ufw deny from 31.13.72.0/24 ufw deny from 31.13.73.0/24 ufw deny from 31.13.80.0/24 ufw deny from 31.13.82.0/24 ufw deny from 31.13.83.0/24 ufw deny from 31.13.84.0/24 ufw deny from 31.13.86.0/24 ufw deny from 31.13.87.0/24 ufw deny from 31.13.89.0/24 … (745 more lines)