// ZOOM / UFW
Zoom · UFW
UFW (Uncomplicated Firewall) shell script for Zoom. 60 CIDRs, refreshed daily.
// ufw_zoom_allow.sh
#!/bin/bash # Zoom IP Ranges # Updated: 2026-04-17 00:35:11 # 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 zoom ufw allow from 3.7.35.0/25 ufw allow from 3.235.82.0/23 ufw allow from 3.235.96.0/23 ufw allow from 15.220.80.0/24 ufw allow from 15.220.81.0/25 ufw allow from 18.254.23.128/25 ufw allow from 18.254.61.0/25 ufw allow from 20.203.158.80/28 ufw allow from 20.203.190.192/26 ufw allow from 52.61.100.128/25 ufw allow from 64.211.144.0/24 ufw allow from 64.224.32.0/19 ufw allow from 69.174.108.0/22 ufw allow from 101.36.167.0/24 ufw allow from 101.36.170.0/23 ufw allow from 103.122.166.0/23 … (44 more lines)
// ufw_zoom_deny.sh
#!/bin/bash # Zoom IP Ranges # Updated: 2026-04-17 00:35:11 # 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 zoom ufw deny from 3.7.35.0/25 ufw deny from 3.235.82.0/23 ufw deny from 3.235.96.0/23 ufw deny from 15.220.80.0/24 ufw deny from 15.220.81.0/25 ufw deny from 18.254.23.128/25 ufw deny from 18.254.61.0/25 ufw deny from 20.203.158.80/28 ufw deny from 20.203.190.192/26 ufw deny from 52.61.100.128/25 ufw deny from 64.211.144.0/24 ufw deny from 64.224.32.0/19 ufw deny from 69.174.108.0/22 ufw deny from 101.36.167.0/24 ufw deny from 101.36.170.0/23 ufw deny from 103.122.166.0/23 … (44 more lines)