// WASABI / UFW
wasabi · UFW
UFW (Uncomplicated Firewall) shell script for wasabi. 20 CIDRs, refreshed daily.
// ufw_wasabi_allow.sh
#!/bin/bash # Wasabi IP Ranges # Updated: 2026-07-12 03:46:23 # 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 wasabi ufw allow from 27.131.254.0/24 ufw allow from 38.27.106.0/24 ufw allow from 38.73.225.0/24 ufw allow from 38.91.42.0/24 ufw allow from 38.126.68.0/24 ufw allow from 38.143.146.0/24 ufw allow from 38.146.40.0/24 ufw allow from 38.146.208.0/23 ufw allow from 38.242.13.0/24 ufw allow from 103.151.85.0/24 ufw allow from 130.117.185.0/24 ufw allow from 130.117.252.0/24 ufw allow from 149.5.241.0/24 ufw allow from 149.13.185.0/24 ufw allow from 154.18.200.0/24 ufw allow from 154.49.215.0/24 … (3 more lines)
// ufw_wasabi_deny.sh
#!/bin/bash # Wasabi IP Ranges # Updated: 2026-07-12 03:46:23 # 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 wasabi ufw deny from 27.131.254.0/24 ufw deny from 38.27.106.0/24 ufw deny from 38.73.225.0/24 ufw deny from 38.91.42.0/24 ufw deny from 38.126.68.0/24 ufw deny from 38.143.146.0/24 ufw deny from 38.146.40.0/24 ufw deny from 38.146.208.0/23 ufw deny from 38.242.13.0/24 ufw deny from 103.151.85.0/24 ufw deny from 130.117.185.0/24 ufw deny from 130.117.252.0/24 ufw deny from 149.5.241.0/24 ufw deny from 149.13.185.0/24 ufw deny from 154.18.200.0/24 ufw deny from 154.49.215.0/24 … (3 more lines)