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
- 1Verify your plan's rotation interval and ensure it meets your needs
- 2Check if your application is maintaining a persistent connection, which may prevent rotation
- 3Ensure you're not using session-based authentication that could tie you to a specific IP
- 4Test 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
Still facing issues? Contact our support team for further assistance.