← blog

Your rented Mac is not in a data center, and for testing that is a feature

September 20, 2026 · 6 min read

A prospect asked two reasonable questions before signing up. Where are the machines, and does the outbound IP geolocate there? The honest answer is that they are in a private facility in New Jersey on business fiber, not in a data center. A few weeks ago that felt like something to explain apologetically. It is not.

What the databases say

We checked from a machine itself rather than assuming. The outbound address resolves to a business fiber provider. Reverse DNS points at the provider's customer pool. Two independent geolocation services agree on the classification.

isp:      Verizon Business
as:       AS701
hosting:  false
proxy:    false
mobile:   false

That last block is the point. To every system that scores traffic by where it comes from, this Mac looks like an office, because that is what it is.

Why that matters for testing

Anti-bot and anti-fraud systems treat data center address ranges with suspicion, and they are right to. So sign-up flows, payment sandboxes, ad verification, survey panels and geo-aware services all behave differently when the request comes from a cloud IP. A test that passes from a developer's laptop and fails from CI is very often this and nothing else.

The first customer who asked about this runs iOS QA. Their tests talk to production services that behave differently for cloud traffic. For that job, a Mac on a normal business line is not a compromise. It is the requirement.

Check your own egress

You can verify any machine's classification in a minute, from the machine itself. These are the exact commands we ran.

# what address does the world see?
curl -s https://api.ipify.org

# how is it classified?
curl -s "http://ip-api.com/json/<that-address>?fields=isp,as,hosting,proxy,mobile"

# what does reverse DNS say about it?
dig +short -x <that-address>

Run the same three commands from a cloud CI runner and compare. The hosting flag and the reverse DNS pattern are usually enough to explain a test that only fails in CI.

The honest limits

  • No static or dedicated public IPv4. The address is a business fiber assignment and can change. If you need a fixed address on an allow list, this is the wrong product.
  • No inbound ports. You reach the Mac over a private Tailscale network, or through the browser desktop. Nothing is exposed to the internet.
  • One location. You cannot pick a city or country.
  • Developer services only. The acceptable use policy covers CI, builds, tests and developer tools including coding agents, on your own software. It does not cover scraping at scale or getting around another service's terms, and a real network address is not an invitation to try.

What it is good for

  • QA against real services that score cloud traffic differently.
  • Simulators and test devices that talk to production APIs during CI.
  • Build pipelines for apps whose own backends block cloud ranges.
  • Coding agents that browse documentation and sign in to developer tools without tripping bot walls.

We used to describe the location carefully. Now we describe it exactly, because for the customers it suits, exact is the selling point.

Questions

Do I get a static public IP?
No. The outbound address is a business fiber assignment and can change. Access to the Mac is over a private Tailscale network, and no inbound ports are exposed.
Where are the machines?
New Jersey, United States, in our own private facility on business fiber. Not a shared cloud region and not a rented colocation cage.
Is the connection a proxy or VPN?
No. Traffic leaves directly over the business line. Geolocation databases report it as not hosting, not proxy and not mobile.
What is it allowed to be used for?
Developer services: CI, builds, tests, and running developer tools including coding agents on your own software. Scraping at scale or evading another service's terms is outside the acceptable use policy.
Can I request a specific city or country?
No. All machines are in the same place. If your test needs a particular geography, this is not the right tool for it.

Run your own numbers on the calculator or lease a runner.