// 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-02-11 15:35:32 # 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 bingbot ufw allow from 157.55.39.0/24 ufw allow from 207.46.13.0/24 ufw allow from 40.77.167.0/24 ufw allow from 13.66.139.0/24 ufw allow from 13.66.144.0/24 ufw allow from 52.167.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 139.217.52.0/28 ufw allow from 191.233.204.224/28 ufw allow from 20.36.108.32/28 ufw allow from 20.43.120.16/28 ufw allow from 40.79.131.208/28 ufw allow from 40.79.186.176/28 ufw allow from 52.231.148.0/28 … (12 more lines)
// ufw_bingbot_deny.sh
#!/bin/bash # Bingbot IP Ranges # Updated: 2026-02-11 15:35:32 # 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 bingbot ufw deny from 157.55.39.0/24 ufw deny from 207.46.13.0/24 ufw deny from 40.77.167.0/24 ufw deny from 13.66.139.0/24 ufw deny from 13.66.144.0/24 ufw deny from 52.167.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 139.217.52.0/28 ufw deny from 191.233.204.224/28 ufw deny from 20.36.108.32/28 ufw deny from 20.43.120.16/28 ufw deny from 40.79.131.208/28 ufw deny from 40.79.186.176/28 ufw deny from 52.231.148.0/28 … (12 more lines)