// MULLVAD VPN / UFW
Mullvad VPN · UFW
UFW (Uncomplicated Firewall) shell script for Mullvad VPN. 1,140 CIDRs, refreshed daily.
// ufw_mullvad_allow.sh
#!/bin/bash # Mullvad IP Ranges # Updated: 2026-07-24 03:16:55 # 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 mullvad ufw allow from 23.144.160.67/32 ufw allow from 23.144.160.86/32 ufw allow from 23.144.160.106/32 ufw allow from 23.159.216.3/32 ufw allow from 23.159.216.127/32 ufw allow from 23.160.24.3/32 ufw allow from 23.160.24.127/32 ufw allow from 23.162.8.3/32 ufw allow from 23.162.8.67/32 ufw allow from 23.162.8.130/32 ufw allow from 23.162.40.3/32 ufw allow from 23.162.40.127/32 ufw allow from 23.168.216.3/32 ufw allow from 23.168.216.127/32 ufw allow from 23.234.68.2/32 ufw allow from 23.234.68.127/32 … (1102 more lines)
// ufw_mullvad_deny.sh
#!/bin/bash # Mullvad IP Ranges # Updated: 2026-07-24 03:16:55 # 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 mullvad ufw deny from 23.144.160.67/32 ufw deny from 23.144.160.86/32 ufw deny from 23.144.160.106/32 ufw deny from 23.159.216.3/32 ufw deny from 23.159.216.127/32 ufw deny from 23.160.24.3/32 ufw deny from 23.160.24.127/32 ufw deny from 23.162.8.3/32 ufw deny from 23.162.8.67/32 ufw deny from 23.162.8.130/32 ufw deny from 23.162.40.3/32 ufw deny from 23.162.40.127/32 ufw deny from 23.168.216.3/32 ufw deny from 23.168.216.127/32 ufw deny from 23.234.68.2/32 ufw deny from 23.234.68.127/32 … (1102 more lines)