
European Union: pluspoller.site24x7.euIndia: pluspoller.site24x7.inChina: pluspoller.site24x7.cnAustralia: pluspoller.site24x7.net.auCanada: pluspoller.site24x7.caJapan: pluspoller.site24x7.jpSaudi Arabia: pluspoller.site24x7.sa
Note: If the Site24x7 server is not reachable, please check your network connectivity.To check the accessibility without a proxy, execute the following command to verify access:wget plus.site24x7.com (.eu, .cn, .in, .net.au, .jp, .sa, .ca)
If the proxy details are unclear, verify them using the commands below:
Proxy without authentication: To use a proxy without credentials, execute the following command:curl -A "Site24x7-Poller" --proxy "http://proxy_host:proxy_port" -Lksv "https://pluspoller.site24x7.com" Proxy with authentication: To use a proxy with the required credentials, execute the following command:curl -A "Site24x7-Poller" --proxy "https://proxy_user:proxy_password@proxy_host:proxy_port" -Lksv "https://pluspoller.site24x7.com" Alternative command: If the On-Premise Poller is configured to use a proxy, execute the following command:wget -e use_proxy=yes -e https_proxy=proxy_host --proxy-user=proxy_username --proxy-password=proxy_password https://pluspoller.site24x7.com/ (.eu, .cn, .in, .net.au, .jp, .sa, .ca)

proxy_host | your_proxy_hostname |
proxy_port | your_proxy_port_number |
proxy_user | your_proxy_username |
proxy_password | your_proxy_password |
Important: Follow the same steps for the domain plus2.site24x7.com (.eu, .cn, .in, .net.au, .jp, .sa, .ca) by replacing the URL in the above commands.A successful connection will return HTTP response code 200, confirming that the On-Premise Poller has proper access.
To verify access for the machines running PowerShell versions below 5.0, execute the following commands on the machine where the On-Premise Poller is installed:$ProxyAddress = "proxy_address" [system.net.webrequest]::defaultwebproxy = New-Object system.net.webproxy($ProxyAddress) [System.Net.CredentialCache]$credentialCache = New-Object System.Net.CredentialCache $credential = New-Object System.Net.NetworkCredential("username", "Password","domain") $credentialCache.Add($ProxyAddress,"Basic",$credential) [system.net.webrequest]::defaultwebproxy.credentials = $credentialCache [system.net.webrequest]::defaultwebproxy.BypassProxyOnLocal = $true [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Invoke-WebRequest -uri "https://pluspoller.site24x7.com/(.eu, .cn, .in, .net.au, .jp, .sa, .ca)
1. Testing accessibility without a proxyTo verify basic connectivity, execute the following command:Invoke-WebRequest -Uri "https://pluspoller.site24x7.com"(.eu, .cn, .in, .net.au, .jp, .sa, .ca)2. Testing accessibility with a proxy
proxy_url | Your proxy host IP |
proxy_port | Your proxy port |
username | Your proxy user name |
password | Your proxy password |
ProxyCredential | Your proxy credentials |
domain | Your domain name. |