Download current IP ranges (CIDRs) used by the Hostway cloud infrastructure.
Choose your preferred format. All downloads are permalinks that always provide the latest data.
First 25 of 174 ranges. Download the full list above, or search for a specific IP.
| CIDR | Type | Tag |
|---|---|---|
| 61.100.0.0/20 | ipv4 | AS9952 |
| 61.100.0.0/24 | ipv4 | AS9952 |
| 61.100.1.0/24 | ipv4 | AS9952 |
| 61.100.2.0/24 | ipv4 | AS9952 |
| 61.100.3.0/24 | ipv4 | AS9952 |
| 61.100.4.0/24 | ipv4 | AS9952 |
| 61.100.5.0/24 | ipv4 | AS9952 |
| 61.100.6.0/24 | ipv4 | AS9952 |
| 61.100.7.0/24 | ipv4 | AS9952 |
| 61.100.8.0/24 | ipv4 | AS9952 |
| 61.100.9.0/24 | ipv4 | AS9952 |
| 61.100.10.0/24 | ipv4 | AS9952 |
| 61.100.11.0/24 | ipv4 | AS9952 |
| 61.100.12.0/24 | ipv4 | AS9952 |
| 61.100.13.0/24 | ipv4 | AS9952 |
| 61.100.14.0/24 | ipv4 | AS9952 |
| 61.100.15.0/24 | ipv4 | AS9952 |
| 61.100.180.0/22 | ipv4 | AS9952 |
| 61.100.180.0/24 | ipv4 | AS9952 |
| 61.100.181.0/24 | ipv4 | AS9952 |
| 61.100.182.0/24 | ipv4 | AS9952 |
| 61.100.183.0/24 | ipv4 | AS9952 |
| 61.100.184.0/22 | ipv4 | AS9952 |
| 61.100.184.0/24 | ipv4 | AS9952 |
| 61.100.185.0/24 | ipv4 | AS9952 |
# Download with curl
curl -O https://cloud-ip-ranges.com/download/hostway.txt
# Or download with wget
wget https://cloud-ip-ranges.com/download/hostway.txt
# Download and block Hostway IPs with iptables
wget -O hostway_ips.txt https://cloud-ip-ranges.com/download/hostway.txt
while read ip; do
iptables -A INPUT -s $ip -j DROP
iptables -A OUTPUT -d $ip -j DROP
done < hostway_ips.txt
# Download and block Hostway IPs with UFW
wget -O hostway_ips.txt https://cloud-ip-ranges.com/download/hostway.txt
while read ip; do
ufw deny from $ip
ufw deny to $ip
done < hostway_ips.txt
# Create fail2ban filter for Hostway
sudo tee /etc/fail2ban/filter.d/hostway-block.conf << EOF
[Definition]
failregex = ^.*$
ignoreregex =
EOF
# Create jail configuration
sudo tee /etc/fail2ban/jail.d/hostway-block.conf << EOF
[hostway-block]
enabled = true
filter = hostway-block
action = iptables-allports[name=hostway]
logpath = /tmp/hostway_ips.txt
findtime = 1
bantime = -1
maxretry = 1
EOF
# Download IP list and restart fail2ban
wget -O /tmp/hostway_ips.txt https://cloud-ip-ranges.com/download/hostway.txt
sudo systemctl restart fail2ban
# Create alias table for Hostway IPs
# 1. Download the IP list
wget -O hostway_ips.txt https://cloud-ip-ranges.com/download/hostway.txt
# 2. In pfSense/OPNsense web interface:
# - Go to Firewall > Aliases
# - Create new alias named "HOSTWAY_BLOCK"
# - Type: Network(s)
# - Import the downloaded file
#
# 3. Create firewall rule:
# - Go to Firewall > Rules > WAN
# - Add rule: Action=Block, Source=HOSTWAY_BLOCK
These IP ranges are sourced directly from Hostway's official feeds and are updated regularly to ensure accuracy. The data includes IPv4 and IPv6 ranges used by Hostway's infrastructure worldwide. Last update was about 5 hours ago.