// GITHUB / UFW
GitHub · UFW
UFW (Uncomplicated Firewall) shell script for GitHub. 7,377 CIDRs, refreshed daily.
// ufw_github_allow.sh
#!/bin/bash # Github IP Ranges # Updated: 2026-07-07 03:15:57 # 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 github ufw allow from 4.148.0.0/14 ufw allow from 4.152.0.0/14 ufw allow from 4.156.0.0/15 ufw allow from 4.172.0.0/14 ufw allow from 4.180.0.0/16 ufw allow from 4.204.0.0/14 ufw allow from 4.208.0.0/15 ufw allow from 4.210.0.0/16 ufw allow from 4.225.11.192/32 ufw allow from 4.225.11.194/32 ufw allow from 4.225.11.196/32 ufw allow from 4.225.11.200/31 ufw allow from 4.227.0.0/16 ufw allow from 4.228.31.145/32 ufw allow from 4.228.31.149/32 ufw allow from 4.228.31.150/32 … (5388 more lines)
// ufw_github_deny.sh
#!/bin/bash # Github IP Ranges # Updated: 2026-07-07 03:15:57 # 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 github ufw deny from 4.148.0.0/14 ufw deny from 4.152.0.0/14 ufw deny from 4.156.0.0/15 ufw deny from 4.172.0.0/14 ufw deny from 4.180.0.0/16 ufw deny from 4.204.0.0/14 ufw deny from 4.208.0.0/15 ufw deny from 4.210.0.0/16 ufw deny from 4.225.11.192/32 ufw deny from 4.225.11.194/32 ufw deny from 4.225.11.196/32 ufw deny from 4.225.11.200/31 ufw deny from 4.227.0.0/16 ufw deny from 4.228.31.145/32 ufw deny from 4.228.31.149/32 ufw deny from 4.228.31.150/32 … (5388 more lines)