// GITHUB / UFW
GitHub · UFW
UFW (Uncomplicated Firewall) shell script for GitHub. 6,736 CIDRs, refreshed daily.
// ufw_github_allow.sh
#!/bin/bash # Github IP Ranges # Updated: 2026-05-21 03:20:30 # 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 github ufw allow from 192.30.252.0/22 ufw allow from 185.199.108.0/22 ufw allow from 140.82.112.0/20 ufw allow from 143.55.64.0/20 ufw allow from 2a0a:a440::/29 ufw allow from 2606:50c0::/32 ufw allow from 192.30.252.0/22 ufw allow from 185.199.108.0/22 ufw allow from 140.82.112.0/20 ufw allow from 143.55.64.0/20 ufw allow from 2a0a:a440::/29 ufw allow from 2606:50c0::/32 ufw allow from 20.201.28.151/32 ufw allow from 20.205.243.166/32 ufw allow from 20.87.245.0/32 ufw allow from 4.237.22.38/32 … (6720 more lines)
// ufw_github_deny.sh
#!/bin/bash # Github IP Ranges # Updated: 2026-05-21 03:20:30 # 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 github ufw deny from 192.30.252.0/22 ufw deny from 185.199.108.0/22 ufw deny from 140.82.112.0/20 ufw deny from 143.55.64.0/20 ufw deny from 2a0a:a440::/29 ufw deny from 2606:50c0::/32 ufw deny from 192.30.252.0/22 ufw deny from 185.199.108.0/22 ufw deny from 140.82.112.0/20 ufw deny from 143.55.64.0/20 ufw deny from 2a0a:a440::/29 ufw deny from 2606:50c0::/32 ufw deny from 20.201.28.151/32 ufw deny from 20.205.243.166/32 ufw deny from 20.87.245.0/32 ufw deny from 4.237.22.38/32 … (6720 more lines)