// BINGBOT / UFW
Bingbot · UFW
UFW (Uncomplicated Firewall) shell script for Bingbot. 28 CIDRs, refreshed daily.
// ufw_bingbot_allow.sh
#!/bin/bash # Bingbot IP Ranges # Updated: 2026-06-14 03:21:38 # 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 bingbot ufw allow from 13.66.139.0/24 ufw allow from 13.66.144.0/24 ufw allow from 13.67.10.16/28 ufw allow from 13.69.66.240/28 ufw allow from 13.71.172.224/28 ufw allow from 20.15.133.160/27 ufw allow from 20.36.108.32/28 ufw allow from 20.43.120.16/28 ufw allow from 20.74.197.0/28 ufw allow from 20.79.107.240/28 ufw allow from 20.125.163.80/28 ufw allow from 40.77.139.0/25 ufw allow from 40.77.167.0/24 ufw allow from 40.77.177.0/24 ufw allow from 40.77.178.0/23 ufw allow from 40.77.188.0/22 … (12 more lines)
// ufw_bingbot_deny.sh
#!/bin/bash # Bingbot IP Ranges # Updated: 2026-06-14 03:21:38 # 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 bingbot ufw deny from 13.66.139.0/24 ufw deny from 13.66.144.0/24 ufw deny from 13.67.10.16/28 ufw deny from 13.69.66.240/28 ufw deny from 13.71.172.224/28 ufw deny from 20.15.133.160/27 ufw deny from 20.36.108.32/28 ufw deny from 20.43.120.16/28 ufw deny from 20.74.197.0/28 ufw deny from 20.79.107.240/28 ufw deny from 20.125.163.80/28 ufw deny from 40.77.139.0/25 ufw deny from 40.77.167.0/24 ufw deny from 40.77.177.0/24 ufw deny from 40.77.178.0/23 ufw deny from 40.77.188.0/22 … (12 more lines)