How it works
When you route a request throughdcp-us.proxies.fo:10808 or dcp-eu.proxies.fo:10808:
- The proxy receives your
CONNECTor HTTP request with the target hostname - The network resolves the target’s DNS record (A for IPv4, AAAA for IPv6)
- If the target has an AAAA record, the connection may egress over IPv6
- If the target is IPv4-only, the connection egresses over IPv4
Checking what you got
api.ipify.orgis IPv4-only — the response will always be an IPv4 addressapi6.ipify.orgis IPv6-only — if your connection succeeds, you egressed over IPv6
Forcing IPv4
Most HTTP clients default to IPv4 when both families are available. If you want to guarantee IPv4:Forcing IPv6
When to prefer IPv6
- The target supports IPv6 (check with
dig AAAA <domain> +short) - You need high concurrency — IPv6 pools are effectively unlimited
- Cost per request matters
When to prefer IPv4
- The target is IPv4-only (no AAAA record)
- You’re using tooling that doesn’t cleanly support IPv6
- Compatibility with legacy systems is a concern
