How datacenter IPs are detected
Three layers of detection fire before the HTML even renders:
- ASN lookup at the CDN edge. Cloudflare, Akamai, DataDome, and AWS WAF maintain comprehensive lists of hosting-provider ASNs (AS16509 AWS, AS15169 GCP, AS8075 Azure, AS14061 DigitalOcean, plus OVH, Hetzner, Linode, Vultr, etc.). AWS WAF specifically maintains the
HostingProviderIPListwith ASN-based inclusion. Match → blocked. - Published cloud subnets. AWS, GCP, and Azure publish their public IP ranges as official JSON feeds. Anti-bot vendors ingest these directly and update blocklists in near real time.
- Reverse-DNS pattern matching. Many datacenter IPs have PTR records like
ec2-54-83-...orcompute-1.amazonaws.com. Even when the ASN check is bypassed, the reverse DNS gives the IP away.
One widely-cited figure: roughly 99% of traffic from known datacenter ranges is bot traffic. Sites can therefore block on ASN with confidence that the false-positive rate (real users coming from AWS) is effectively zero.
When datacenter proxies are actually fine
Datacenter is the right tool when:
- The target has no anti-bot at all. Public APIs, government open data, academic sites, large static-content sites that simply do not care about scraping.
- The target is your own infrastructure. Monitoring your own production endpoints from a different region, geofence testing, load testing — datacenter is the right answer because your own systems do not block them.
- You can authenticate. Once you have an API token, the ASN check usually falls away because authenticated requests are trusted differently. Datacenter is fine for authenticated API integrations.
- You are testing. Burning cheap IPs to characterise a target before committing residential budget.
Anywhere else — Cloudflare, Akamai, DataDome, PerimeterX, F5 Shape, Kasada — datacenter is near-instantly blocked, no matter how perfect your TLS fingerprint is.
The proxy ladder by trust
From cheapest/least trusted to most trusted/most expensive:
- Datacenter — ~$0.50–$1.50/GB. Unprotected targets only.
- ISP / static residential — ~$1.50–5/IP/month. Datacenter hardware announced under residential ASNs. Akamai's multi-request scoring rewards them.
- Residential — ~$3–10/GB. Peer-to-peer networks of real consumer devices. The default for general anti-bot work.
- Mobile / 4G–5G — ~$10–15/GB. Real carrier IPs behind carrier-grade NAT, highest trust score. For the hardest DataDome and PerimeterX targets.
The rule of thumb: match proxy cost to target difficulty. Spending mobile-tier money on an unprotected academic dataset is waste; using datacenter on Nike or Walmart is also waste — every request fails.
