How Mobile Proxy IP
Rotation Actually Works
on Carrier Networks

"Rotate" looks like a button. Underneath it is a real network procedure: a carrier tearing down and rebuilding a session, a gateway deciding when to release an address, and a shared IP pool that was never exclusively yours. Here's how mobile IP rotation actually works, layer by layer.

A cellular tower with multiple antenna arrays against a landscape sky, representing the carrier network infrastructure behind mobile IP rotation.
Key Takeaways
  • Mobile IP rotation isn't proxy-provider magic; it rides on real carrier engineering. A new IP usually means a device went through a fresh PDP context (4G) or PDU session (5G) setup, per 3GPP standards TS 23.401 and TS 23.502.
  • Quick reconnects often don't change your IP. Carrier gateways use address hold timers, documented as short as 120 seconds in Cisco's P-GW configuration guides, so a subscriber who reconnects fast gets the same address back.
  • CGNAT is why a carrier IP was never really "yours" alone. Per IETF RFC 6888, carriers share one public IPv4 address across many subscribers; NFWare's deployment guidance caps this around 128 subscribers per IP, while Cloudflare has observed real-world sharing reach into the hundreds or thousands.
  • "Rotate" buttons trigger provider-side session routing, not carrier commands. SOAX, Oxylabs, and IPRoyal documentation all describe rotation as choosing among IPs already available in a managed pool, layered on top of the carrier's own churn.

Proxyway's 2026 market research puts advertised mobile proxy pool sizes anywhere from 5 million to 33 million IPs across major providers, with a median around 16 million, and notes that only 9 to 10 of the 13 providers it benchmarks even offer a mobile product at all; Bright Data discontinued its mobile proxy line entirely in April 2026 (Proxyway, "Proxy Market Research 2026", published Mar-Apr 2026). Mobile proxies are a shrinking-provider, premium niche, even as the underlying thing that makes them valuable, a constantly churning pool of carrier-assigned IPs, hasn't changed at all.

That's the gap this guide fills. Most explainers describe mobile IP rotation from the buyer's side: click a button, set a session duration, get a new IP. Almost none explain what's actually happening underneath that button, on the carrier's own network. This piece walks through the real mechanism: how a phone gets an IP address in the first place, why that address changes when it does, why it sometimes doesn't change even when you ask it to, and where a proxy provider's "rotate" command actually sits in that chain. If you already know the difference between a rotating, sticky, and dedicated mobile session and just need to pick one, our comparison of rotating, sticky, and dedicated mobile proxies covers that buyer's-guide ground; this piece is about the network layer underneath it.

Advertised Mobile Proxy IP Pool Sizes (2026)
Proxyway's 2026 market research found advertised mobile proxy IP pool sizes ranging from 5 million to 33 million across major providers, with SOAX leading at 33 million and a median around 16 million. Only 9 to 10 of the 13 benchmarked providers offer mobile proxies at all. Source: Proxyway, Proxy Market Research 2026. Millions of IPs, by provider SOAX 33M Market median ~16M Market low end 5M Providers offering mobile 9-10 of 13 benchmarked
Source: Proxyway, "Proxy Market Research 2026."

What "Rotation" Actually Means at the Network Layer

🔄
Mobile Proxy IP Rotation
The process by which a mobile device's public-facing IP address changes, either because the underlying carrier network assigns it a new address as part of normal network operation, or because a proxy provider's routing layer switches which device or session in its managed pool is currently handling your traffic.

Those are two different events happening at two different layers, and conflating them is where most confusion starts. The carrier-side event is a real network procedure: a device disconnects from and reattaches to the mobile core, and as part of that reattachment, the network allocates it an address. The provider-side event is a routing decision made entirely inside the proxy provider's own infrastructure: pick a different already-connected device or session ID to route your next request through. A "rotate" button can trigger either, or both, but they are not the same mechanism, and understanding the difference explains a lot of behavior that otherwise looks arbitrary, like why a rotation request sometimes hands you back an IP you just had.

The Carrier Side: How a Phone Gets (and Loses) Its IP

On 4G/LTE networks, a device's IP address is tied to its PDN connection, formally an EPS bearer established during the network Attach procedure. When a device attaches, the Mobility Management Entity selects a Packet Data Network Gateway, and that P-GW allocates the PDN address, either statically from data the carrier already holds about the subscriber, or dynamically from an address pool, then delivers it to the device inside the Attach Accept message (3GPP TS 23.401, the governing 3GPP standard for LTE/EPS network procedures). A fresh Attach, triggered by something like toggling airplane mode, a full radio deregistration, or an explicit PDN connection release, restarts this allocation cycle and can hand the device a different address than it had before.

5G networks use the equivalent PDU Session instead of a PDP context, but the mechanism is structurally the same: the device sends a PDU Session Establishment Request through the base station and Access and Mobility Management Function to the Session Management Function, which selects a User Plane Function and allocates the session's IP address or prefix, sometimes at establishment and sometimes deferred to a follow-up DHCPv4 exchange once the session is already up (3GPP TS 23.502, the 3GPP standard for 5G system procedures, ETSI mirror V18.5.0). The important distinction for rotation purposes: a handover, where an active session moves from one cell tower to another, is specifically designed to preserve the existing session and its address, while establishing a genuinely new PDU session is what triggers a new allocation.

Verdict
A mobile IP changes when the underlying session gets torn down and rebuilt, whether that's a full network reattach on 4G or a new PDU session on 5G, not simply because time has passed or the phone moved between towers. Ordinary tower handoffs are built to keep your session, and your address, intact.

Why a Quick Reconnect Doesn't Always Change Your IP

If sessions are what trigger address allocation, why doesn't disconnecting and immediately reconnecting always produce a new IP? Because carrier gateways don't release an address the instant a session ends. Cisco's P-GW configuration documentation for its ASR 5000 series describes an address hold timer feature, with example configurations holding a released address for as little as 120 seconds before it returns to the free pool for reassignment (Cisco, "P-GW Administration Guide: Address Hold Timer Support," StarOS Release 21.28). A subscriber who reattaches inside that window gets the same address back; only once the hold timer expires does the address genuinely return to circulation for a different device to receive.

A related mechanism governs how long an address survives while a session stays connected. Carrier gateways commonly act as a DHCP proxy for the device's session, tracking the subscriber's own idle or session timer against the DHCP lease renewal timer; if the session is still within budget when a renewal comes due, the gateway can acknowledge it locally without even contacting the DHCP server, and the effective lease time served to the device ends up being whichever is shorter: the DHCP server's configured lease, or the carrier's own idle-timeout policy for that subscriber ("Network element having a DHCP lease timer," USPTO Patent 8125993, describing a standard GGSN/P-GW implementation pattern, not a universal carrier-wide rule). In practice, this means a carrier's idle-timeout policy, which most subscribers never see or configure, often matters more to how "sticky" your mobile IP naturally is than the DHCP lease length printed in any spec.

Verdict
If a rotation request doesn't change your IP, the most likely cause isn't a broken provider, it's a carrier-side hold timer that's still protecting the address for the device that just released it. Reconnecting again after that window typically produces a different result.

CGNAT: Why the IP You're Handed Isn't Really "Yours"

Even once a device gets a fresh address, that address was never exclusively its own. IETF RFC 6888 formally defines Carrier-Grade NAT as a network address translation function, deployed and managed by the carrier rather than the subscriber, that maps a shared public IPv4 address across many subscribers at once, while trying to keep external-address mappings consistent for each internal device across its sessions (IETF, RFC 6888, "Common Requirements for Carrier-Grade NATs (CGNs)"). CGNAT exists because mobile carriers ran out of enough public IPv4 addresses to give every subscriber their own, long before IPv6 adoption caught up.

The sharing ratio is bounded by port math. A public IP has roughly 64,000 usable ports in the standard range, and CGNAT vendor NFWare's deployment guidance recommends allocating around 500 ports per subscriber for good quality of experience, a ratio that mathematically caps density at roughly 128 subscribers sharing one public IPv4 address (NFWare, "Achieving Optimal Subscriber Density: CGNAT Best Practices"). That's the engineering target, not the observed ceiling. Cloudflare's own detection research has found that a single CGNAT IP can represent hundreds or even thousands of real users on some networks, particularly across parts of Africa and Central and Southeast Asia where CGNAT reliance runs especially high, and that CGNAT-originating IPs get rate-limited roughly three times more often than non-CGNAT IPs despite carrying a nearly identical median bot rate, 4.8% versus 4.7% (Cloudflare Blog, "One IP Address, Many Users: Detecting CGNAT to Reduce Collateral Effects", Oct 29, 2025, updated Jul 15, 2026). APNIC's own technical commentary confirms the structural driver behind that sharing: a fixed, roughly 64,000-port inventory per IP has to stretch across potentially millions of subscriber devices at carrier scale, which is exactly why carriers actively cycle addresses and ports through subscribers instead of holding them statically (APNIC Blog, "Let's Talk About CGNAT and IPv6, Again", May 13, 2025).

Subscribers Sharing One Carrier IP: Engineering Cap vs. Real-World Range
NFWare's deployment guidance recommends capping subscriber density at roughly 128 subscribers per shared public IPv4 address for good quality of experience. Cloudflare's detection research has observed real-world sharing reach into the hundreds or thousands of users on some carrier networks. Sources: NFWare CGNAT best practices; Cloudflare, One IP Address, Many Users. Log-scaled for readability Recommended engineering cap ~128 subscribers Observed real-world range Hundreds to thousands Same public IPv4 address, same CGNAT mechanism
Sources: NFWare, "Achieving Optimal Subscriber Density"; Cloudflare, "One IP Address, Many Users," Oct 2025.
Verdict
CGNAT is the reason mobile IPs carry built-in ban resistance regardless of how you rotate them; blocking a shared address risks blocking every other subscriber currently mapped to it, which our rotating vs. sticky vs. dedicated mobile proxies guide covers in more depth for buyers comparing session modes.

Natural Rotation vs. On-Demand Rotation: Two Different Mechanisms

Natural (Carrier-Driven)On-Demand (Provider-Triggered)
What actually happensDevice attaches, session tears down and rebuilds, or a hold timer expires and releases the addressProvider's own routing layer switches which pooled device or session ID handles the next request
Where it happensInside the carrier's core network (P-GW, UPF, MME/AMF)Inside the proxy provider's own gateway infrastructure
TriggersAirplane-mode toggle, full deregistration, new PDU/PDN session, hold-timer expiry, real signal lossAPI call, connection-string parameter, gateway port selection, session-ID assignment
Provider controlIndirect at best; provider can't command the carrier coreFull control within the provider's managed pool
ReliabilityGoverned by real network conditions and carrier policyBounded by which IPs are genuinely available right now

This is the piece most buyer's-guide content skips: a proxy provider's "rotate" API does not reach into a carrier's mobile core and force a re-attach. It operates one layer up, inside infrastructure the provider itself controls. SOAX's own developer documentation is fairly direct about this, describing a rotate-requests_N parameter that rotates after a configurable number of requests and a rotate-timed_N parameter that rotates on a timer, alongside default per-connection rotation, all implemented as routing logic on SOAX's side rather than a command sent to any carrier (SOAX Developer Docs, "Core Concepts"). IPRoyal's documentation describes the same underlying pattern from a different angle: a _session- key in the connection string that "instructs the routing system to either create or resolve a unique session for the connection," with duration configurable anywhere from one second to seven days, again a routing construct layered over the provider's device pool, not a carrier-level operation (IPRoyal Documentation, "Rotation").

Two Paths to a New Mobile IP Address
The carrier-driven path runs from the device through a fresh network attach or PDU session, to the carrier gateway allocating an address, to CGNAT translating it to a shared public IP. The provider-driven path runs from a proxy API call, to the provider's own gateway selecting a different pooled device or session ID, which still ultimately depends on the carrier-assigned address of whichever device it selects. Editorial synthesis based on 3GPP TS 23.401, TS 23.502, and vendor documentation from SOAX, Oxylabs, and IPRoyal. Two Paths to a New Mobile IP Device reattach / new PDU session Carrier gateway allocates address CGNAT: shared public IP assigned Carrier-driven path (3GPP TS 23.401 / TS 23.502) Rotate API call / session parameter Provider gateway picks pooled device Request routes through that IP Provider-driven path (SOAX, Oxylabs, IPRoyal routing layers) Provider path still depends on this
Editorial synthesis based on 3GPP TS 23.401, TS 23.502, and vendor rotation documentation from SOAX and IPRoyal.

Oxylabs' published mobile proxy pricing describes a comparable model on its own network: rotation by default on every request, or sessions held for up to 24 hours, marketed as "static 24-hour sessions" precisely because it's session-ID pinning inside Oxylabs' own routing, not a claim of a permanently reserved carrier address (Oxylabs, Mobile Proxies Pricing). Decodo's documentation for its mobile sticky sessions is more candid still about the limits of provider control, describing a sessionduration parameter that holds a session up to 1,440 minutes while noting the underlying guarantee still depends on real device availability on the carrier side (Decodo Help Center, "Mobile Proxy Custom Sticky Sessions"). That caveat is the whole point of this section: a provider can promise a routing behavior inside its own infrastructure, but it cannot promise what the carrier's network does underneath it.

Verdict
When you click "rotate," you're asking a proxy provider's own gateway to pick a different device or session from its pool, a request the provider fully controls, layered on top of a carrier-managed address that the provider does not control at all. Most of the time these line up cleanly; the exceptions below are where they don't.

What Can Go Wrong: The Limits of "Rotation On Demand"

A few failure modes fall directly out of the mechanism above, rather than being provider bugs:

  • A "new" IP isn't always genuinely new. If a rotation request lands during a carrier's address hold window, or simply selects a different device that happens to share the same CGNAT-translated public IP as the one you just had, the address you see can look unchanged even though the routing decision behind it did change.
  • Rotation depends on real device availability. As Decodo's own documentation acknowledges, a provider's session pool is made of real devices on real networks; if nothing else is currently available to route through, a rotation request can't manufacture a fresh address out of nothing.
  • Rotating mid-workflow breaks continuity, not just detection. A login or checkout flow that spans multiple requests can silently switch to a new IP if it's set to rotate too aggressively, which looks identical to a different device abruptly taking over someone else's session. That's a session-mode decision, not a network one, and it's covered in more depth in our rotating vs. sticky vs. dedicated mobile proxies guide.
  • Rotation frequency changes exposure, not the underlying CGNAT protection. Spreading requests across more IPs reduces how much activity accumulates on any single shared address, but the ban resistance itself comes from CGNAT sharing, which is identical regardless of how often you rotate.

Summary

01
Mobile IP rotation rides on real carrier engineering. A new address usually means a fresh PDP context or PDU session, per 3GPP TS 23.401 and TS 23.502, not a provider pulling a lever on the carrier's network.
02
Address hold timers explain "stuck" IPs. Carrier gateways can hold a released address for a short window, documented as low as 120 seconds in Cisco's P-GW guides, before it returns to the pool.
03
CGNAT (RFC 6888) is why an IP was never exclusively yours. Roughly 128 subscribers per IP is the engineering target; real-world sharing can reach into the hundreds or thousands.
04
"Rotate" is provider-side session routing, not a carrier command. SOAX, Oxylabs, and IPRoyal all route within their own managed pool, bounded by which devices the carrier network actually has available.

Mobile proxy IP rotation looks like a simple toggle from the buyer's side, but it sits on top of a real, standards-defined network procedure: a device's IP is a byproduct of its PDP context or PDU session, carrier gateways decide how quickly a released address goes back into circulation, and CGNAT means that address was shared with dozens or hundreds of other people the whole time. Proxy providers build genuinely useful routing logic on top of all of that, but that logic operates inside their own infrastructure, not inside the carrier's core network, which is why rotation reliability ultimately traces back to real device availability rather than pure API design.

TorchProxies runs residential and ISP proxy plans today; mobile isn't live yet, but the session concepts here aren't mobile-exclusive. Our Standard, Premium, and Plan X residential plans already support the same rotating-versus-sticky choice, and if a genuinely static, non-shared IP is what you actually need instead of a long-held session, ISP Proxies is dedicated and static by design rather than a session with an expiration date.

Frequently Asked Questions

What does it mean when a mobile proxy "rotates" an IP address? +
It means the proxy provider's own routing layer switched which device or session in its managed pool is handling your traffic, which usually surfaces a different carrier-assigned, CGNAT-translated public IP. It is a routing decision the provider controls, distinct from the carrier-side process that originally assigned that device its address.
Why does my mobile IP sometimes stay the same after reconnecting? +
Most likely because of a carrier-side address hold timer. Carrier gateways can hold a released address for a short window, as low as 120 seconds in example Cisco P-GW configurations, before returning it to the pool for reassignment. Reconnecting inside that window can hand you back the same address.
What is CGNAT and why does it matter for mobile proxy rotation? +
Carrier-Grade NAT, formally defined in IETF RFC 6888, is how mobile carriers share a limited pool of public IPv4 addresses across many subscribers. It matters for rotation because the address you're assigned was never exclusively yours; NFWare's deployment guidance targets roughly 128 subscribers per IP, and Cloudflare's research has observed real-world sharing reach into the hundreds or thousands on some networks.
Can a proxy provider force the carrier to assign a new IP instantly? +
Not directly. A provider's "rotate" command operates inside its own gateway infrastructure, choosing a different already-connected device or session from its pool. It cannot send a command into the carrier's mobile core to force a reattach; providers including SOAX, Oxylabs, and IPRoyal all document rotation as session-routing logic layered on top of the carrier's own address allocation, not a replacement for it.
Is mobile IP rotation different on 5G versus 4G networks? +
The underlying unit changes name, a PDP context or EPS bearer on 4G versus a PDU Session on 5G, but the mechanism is structurally the same: establishing a new session is what triggers a fresh address allocation, per 3GPP TS 23.401 and TS 23.502, while an ordinary handover between towers is designed to preserve the existing session and address rather than reset it.