CLOUD-IP // v2026.08
UPDATED 2026-08-26 PROVIDERS 64 LIVE
// INTERNETARCHIVE / IPTABLES

internetarchive · iptables

iptables shell script to allow or block internetarchive IP ranges on Linux. 9 CIDRs, refreshed daily.

// iptables_internetarchive_allow.sh

DOWNLOAD ↓  · 
#!/bin/bash
# Internetarchive IP Ranges
# Updated: 2026-08-11 02:55:07
# 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
# iptables allow rules for internetarchive

iptables -A INPUT -s 204.62.246.0/23 -j ACCEPT
iptables -A INPUT -s 204.62.248.0/23 -j ACCEPT
iptables -A INPUT -s 207.241.224.0/20 -j ACCEPT
iptables -A INPUT -s 208.70.24.0/21 -j ACCEPT
ip6tables -A INPUT -s 2620:0:9c0::/48 -j ACCEPT

// iptables_internetarchive_deny.sh

DOWNLOAD ↓  · 
#!/bin/bash
# Internetarchive IP Ranges
# Updated: 2026-08-11 02:55:07
# 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
# iptables deny rules for internetarchive

iptables -A INPUT -s 204.62.246.0/23 -j DROP
iptables -A INPUT -s 204.62.248.0/23 -j DROP
iptables -A INPUT -s 207.241.224.0/20 -j DROP
iptables -A INPUT -s 208.70.24.0/21 -j DROP
ip6tables -A INPUT -s 2620:0:9c0::/48 -j DROP