Skip to content

IP whitelisting

Register the addresses your traffic leaves from and we accept their requests with no credentials at all.

Proxy Access → IP Authorization in the dashboard. Add each public address your traffic egresses from.

That is your server’s public IP, not its private one. If you are unsure, run this from the machine itself:

Terminal window
curl https://api.ipify.org

No username, no password.

Terminal window
curl -x us-east.gw.rayobyte.com:8000 https://api.ipify.org

Targeting moves into headers, since there is no password to append to:

Terminal window
curl --proxy-header "X-Rayobyte-Country: US" \
--proxy-header "X-Rayobyte-City: dallas" \
-x us-east.gw.rayobyte.com:8000 https://api.ipify.org

Every option and its header name is on How targeting works.

Fixed egress: dedicated servers, a NAT gateway, a static-IP office. There is no secret to leak into a log, a repository or a screenshot, and nothing to rotate.

Anything with a moving address. Laptops, CI runners, autoscaling workers, consumer connections with dynamic IPs, most container platforms. Your requests start failing the moment the address changes, and the failure looks like an auth problem rather than a network one.

Use username and password there.

The whitelist covers your account. Sub-accounts have their own. See Sub-accounts.

Was this page helpful?