// MULLVAD VPN / UFW
Mullvad VPN · UFW
UFW (Uncomplicated Firewall) shell script for Mullvad VPN. 1,127 CIDRs, refreshed daily.
// ufw_mullvad_allow.sh
#!/bin/bash # Mullvad IP Ranges # Updated: 2026-06-13 03:20:06 # 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 00:00 UTC # UFW allow rules for mullvad 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 ufw allow from 23.234.69.2/32 ufw allow from 23.234.69.127/32 ufw allow from 23.234.70.2/32 … (1111 more lines)
// ufw_mullvad_deny.sh
#!/bin/bash # Mullvad IP Ranges # Updated: 2026-06-13 03:20:06 # 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 00:00 UTC # UFW deny rules for mullvad 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 ufw deny from 23.234.69.2/32 ufw deny from 23.234.69.127/32 ufw deny from 23.234.70.2/32 … (1111 more lines)