// META (FACEBOOK) / UFW
Meta (Facebook) · UFW
UFW (Uncomplicated Firewall) shell script for Meta (Facebook). 759 CIDRs, refreshed daily.
// ufw_meta_allow.sh
#!/bin/bash # Meta IP Ranges # Updated: 2026-07-15 03:15:48 # 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 02: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 45.64.40.0/22 ufw allow from 57.141.0.0/24 ufw allow from 57.141.2.0/23 ufw allow from 57.141.4.0/23 ufw allow from 57.141.6.0/24 ufw allow from 57.141.8.0/24 ufw allow from 57.141.10.0/24 ufw allow from 57.141.12.0/23 ufw allow from 57.141.14.0/24 ufw allow from 57.141.16.0/22 ufw allow from 57.141.20.0/24 ufw allow from 57.141.22.0/24 ufw allow from 57.141.24.0/24 ufw allow from 57.144.0.0/14 … (102 more lines)
// ufw_meta_deny.sh
#!/bin/bash # Meta IP Ranges # Updated: 2026-07-15 03:15:48 # 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 02: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 45.64.40.0/22 ufw deny from 57.141.0.0/24 ufw deny from 57.141.2.0/23 ufw deny from 57.141.4.0/23 ufw deny from 57.141.6.0/24 ufw deny from 57.141.8.0/24 ufw deny from 57.141.10.0/24 ufw deny from 57.141.12.0/23 ufw deny from 57.141.14.0/24 ufw deny from 57.141.16.0/22 ufw deny from 57.141.20.0/24 ufw deny from 57.141.22.0/24 ufw deny from 57.141.24.0/24 ufw deny from 57.144.0.0/14 … (102 more lines)