addrproxy_

address relay infrastructure

REG_0x01 PROTO_TCP CIPHER_AES256

The Routing Diagram

Trace a packet from origin through the proxy relay infrastructure to its destination. Each node is a junction in the chain.

ORIGIN px-node-01a
RELAY px-node-07a3
RELAY px-node-12c8
RELAY px-node-1f40
ORIGIN px-node-02b
EXIT px-node-ff01
// 01 ORIGIN

The packet leaves home.

A request emerges from a client endpoint with a real address attached. From this moment, every hop forward will rewrite that address into something else — a borrowed identity, a forwarded handle.

src=10.42.7.1 → px-node-01a
// 02 RELAY

First mediation.

The first relay strips the original return address and substitutes its own. The packet now belongs to the proxy — from the network's view, it was born here.

strip(src) → rewrite(px-node-07a3)
// 03 RELAY

Routing logic engages.

Mid-chain relays perform path selection: latency, jurisdiction, load. Each forward decision is a small bet on which downstream node will keep the chain healthy.

route(latency<40ms, region=EU)
// 04 RELAY

Penultimate hop.

The chain narrows. The final relay before exit holds the last opportunity to obscure provenance. Headers are normalized, timing is jittered, fingerprints are scrubbed.

jitter(±14ms) | scrub(headers)
// 05 PARALLEL ORIGIN

Concurrent fan-in.

A second origin issues a request that joins the chain mid-flight. The relay infrastructure multiplexes parallel streams onto the same exit path, blurring temporal correlation.

mux(stream_a, stream_b) → shared_exit
// 06 EXIT

Arrival.

The packet reaches its destination wearing the address of the final relay. The recipient sees only the last node in the chain — the origin is invisible behind the cascade of mediations.

dst=service.tld via=px-node-ff01

The Protocol Layer

A packet, deconstructed. Scroll to peel apart the header, payload, and routing metadata.

L1 HEADER
  • version0x04
  • ttl63
  • checksum0x9a3f
L2 PAYLOAD
  • cipheraes-256-gcm
  • size1460 B
  • entropy7.99 b/B
L3 ROUTING
  • viapx-node-07a3
  • viapx-node-12c8
  • exitpx-node-ff01
connection established

addrproxy.com

// session terminated · chain rewound · trace zeroed