// YANDEX / UFW
yandex · UFW
UFW (Uncomplicated Firewall) shell script for yandex. 142 CIDRs, refreshed daily.
// ufw_yandex_allow.sh
#!/bin/bash # Yandex IP Ranges # Updated: 2026-07-12 03:18:07 # 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 yandex ufw allow from 5.45.192.0/18 ufw allow from 5.255.192.0/18 ufw allow from 31.44.8.0/21 ufw allow from 37.9.64.0/18 ufw allow from 37.140.128.0/18 ufw allow from 37.230.168.0/23 ufw allow from 37.230.172.0/22 ufw allow from 46.21.244.0/22 ufw allow from 46.243.209.0/24 ufw allow from 46.243.210.0/23 ufw allow from 51.250.0.0/17 ufw allow from 62.84.112.0/20 ufw allow from 77.88.0.0/18 ufw allow from 81.26.176.0/20 ufw allow from 84.201.128.0/18 ufw allow from 84.252.128.0/20 … (48 more lines)
// ufw_yandex_deny.sh
#!/bin/bash # Yandex IP Ranges # Updated: 2026-07-12 03:18:07 # 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 yandex ufw deny from 5.45.192.0/18 ufw deny from 5.255.192.0/18 ufw deny from 31.44.8.0/21 ufw deny from 37.9.64.0/18 ufw deny from 37.140.128.0/18 ufw deny from 37.230.168.0/23 ufw deny from 37.230.172.0/22 ufw deny from 46.21.244.0/22 ufw deny from 46.243.209.0/24 ufw deny from 46.243.210.0/23 ufw deny from 51.250.0.0/17 ufw deny from 62.84.112.0/20 ufw deny from 77.88.0.0/18 ufw deny from 81.26.176.0/20 ufw deny from 84.201.128.0/18 ufw deny from 84.252.128.0/20 … (48 more lines)