IP Rotation Issues

IP rotation is a key feature of PinguProxy. If you're experiencing issues with IP rotation, this guide will help you troubleshoot and resolve common problems.

Plan-Specific Minimum Rotation Intervals

PlanRotating Interval
Basic1 second
Pro1 millisecond
Enterprise1 millisecond
Custom1 millisecond

Common IP Rotation Issues

  • IP not changing as expected
  • Rotation happening too quickly or slowly
  • Getting blocked or rate-limited despite rotation

Troubleshooting Steps

  1. Verify your plan's rotation interval and ensure it meets your needs
  2. Check if your application is maintaining a persistent connection, which may prevent rotation
  3. Ensure you're not using session-based authentication that could tie you to a specific IP
  4. Test rotation using our IP checking tool or a third-party service

Verification Steps

Use this Python script to check IP rotation:

import requests
import time
proxy = {
'http': 'http://username:[email protected]:port',
'https': 'http://username:[email protected]:port'
}
for _ in range(5):
response = requests.get('https://pinguproxy.com/ip', proxies=proxy)
print(response.json())
time.sleep(2) # Wait for 2 seconds between requests

If you're still facing issues with IP rotation after these steps, please contact our support team for further assistance.