Quick Debug Steps
Run these commands to isolate the issue:
# Step 1: Test basic connectivitycurl -v -x http://gate.zentislabs.com:8080 \ -U "customer-USERNAME-cc-US:YOUR_PASSWORD" \ https://httpbin.org/ip
# Step 2: Test with timeoutcurl --connect-timeout 10 --max-time 30 \ -x http://gate.zentislabs.com:8080 \ -U "customer-USERNAME-cc-US:YOUR_PASSWORD" \ https://httpbin.org/ip
# Step 3: Check DNS resolutionnslookup gate.zentislabs.com
# Step 4: Test port connectivity# Windows:Test-NetConnection gate.zentislabs.com -Port 8080# Linux/macOS:nc -zv gate.zentislabs.com 8080