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
Plan | Rotating Interval |
---|---|
Basic | 1 second |
Pro | 1 millisecond |
Enterprise | 1 millisecond |
Custom | 1 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
- Verify your plan's rotation interval and ensure it meets your needs
- Check if your application is maintaining a persistent connection, which may prevent rotation
- Ensure you're not using session-based authentication that could tie you to a specific IP
- Test rotation using our IP checking tool or a third-party service
Verification Steps
Use this Python script to check IP rotation:
import requestsimport timeproxy = {}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.