GitHub logo GitHub IP Ranges

Download current IP ranges (CIDRs) for GitHub cloud infrastructure.

Provider Information

Official Website
https://github.com
Total IP Ranges
6,388
Last Updated
Total Downloads
545

Download Options

Choose your preferred format. All downloads are permalinks that always provide the latest data.

Usage Examples - Blocking GitHub IPs

Download the IP ranges

# Download with curl
curl -O https://cloud-ip-ranges.com/download/github.txt

# Or download with wget
wget https://cloud-ip-ranges.com/download/github.txt

Block with iptables (Linux firewall)

# Download and block GitHub IPs with iptables
wget -O github_ips.txt https://cloud-ip-ranges.com/download/github.txt
while read ip; do
  iptables -A INPUT -s $ip -j DROP
  iptables -A OUTPUT -d $ip -j DROP
done < github_ips.txt

Block with UFW (Ubuntu/Debian firewall)

# Download and block GitHub IPs with UFW
wget -O github_ips.txt https://cloud-ip-ranges.com/download/github.txt
while read ip; do
  ufw deny from $ip
  ufw deny to $ip
done < github_ips.txt

Block with fail2ban (intrusion prevention)

# Create fail2ban filter for GitHub
sudo tee /etc/fail2ban/filter.d/github-block.conf << EOF
[Definition]
failregex = ^.*$
ignoreregex =
EOF

# Create jail configuration
sudo tee /etc/fail2ban/jail.d/github-block.conf << EOF
[github-block]
enabled = true
filter = github-block
action = iptables-allports[name=github]
logpath = /tmp/github_ips.txt
findtime = 1
bantime = -1
maxretry = 1
EOF

# Download IP list and restart fail2ban
wget -O /tmp/github_ips.txt https://cloud-ip-ranges.com/download/github.txt
sudo systemctl restart fail2ban

Block with pfSense/OPNsense (FreeBSD firewall)

# Create alias table for GitHub IPs
# 1. Download the IP list
wget -O github_ips.txt https://cloud-ip-ranges.com/download/github.txt

# 2. In pfSense/OPNsense web interface:
# - Go to Firewall > Aliases
# - Create new alias named "GITHUB_BLOCK"
# - Type: Network(s)
# - Import the downloaded file
#
# 3. Create firewall rule:
# - Go to Firewall > Rules > WAN
# - Add rule: Action=Block, Source=GITHUB_BLOCK

About GitHub IP Ranges

These IP ranges are sourced directly from GitHub's official feeds and are updated regularly to ensure accuracy. The data includes IPv4 and IPv6 ranges used by GitHub's infrastructure worldwide. Last update was 37 minutes ago.