// HOSTWAY / UFW
hostway · UFW
UFW (Uncomplicated Firewall) shell script for hostway. 174 CIDRs, refreshed daily.
// ufw_hostway_allow.sh
#!/bin/bash # Hostway IP Ranges # Updated: 2026-07-12 03:46:28 # 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 hostway ufw allow from 61.100.0.0/20 ufw allow from 61.100.180.0/22 ufw allow from 61.100.184.0/22 ufw allow from 61.100.188.0/24 ufw allow from 61.100.191.0/24 ufw allow from 61.109.244.0/22 ufw allow from 61.109.250.0/24 ufw allow from 61.109.252.0/22 ufw allow from 61.250.84.0/22 ufw allow from 61.250.88.0/24 ufw allow from 61.250.91.0/24 ufw allow from 61.250.92.0/23 ufw allow from 64.23.67.0/24 ufw allow from 64.23.68.0/24 ufw allow from 64.23.71.0/24 ufw allow from 66.232.136.0/21 … (27 more lines)
// ufw_hostway_deny.sh
#!/bin/bash # Hostway IP Ranges # Updated: 2026-07-12 03:46:28 # 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 hostway ufw deny from 61.100.0.0/20 ufw deny from 61.100.180.0/22 ufw deny from 61.100.184.0/22 ufw deny from 61.100.188.0/24 ufw deny from 61.100.191.0/24 ufw deny from 61.109.244.0/22 ufw deny from 61.109.250.0/24 ufw deny from 61.109.252.0/22 ufw deny from 61.250.84.0/22 ufw deny from 61.250.88.0/24 ufw deny from 61.250.91.0/24 ufw deny from 61.250.92.0/23 ufw deny from 64.23.67.0/24 ufw deny from 64.23.68.0/24 ufw deny from 64.23.71.0/24 ufw deny from 66.232.136.0/21 … (27 more lines)