Issue:
You encounter this error page when you try to navigate to your Orchestrator instance from the Cloud platfrom:
Cause:
Having both IPv4 and IPv6 address configured to connect to the internet might trigger an error message when accessing a service from your Cloud Platform account.
Workaround:
Try disabling IPv6 from your computer’s network card.
To do so, follow the steps below
-
Navigate to
Control Panel\Network and Internet\Network Connections
:
You can also quickly open this menu by pressing Win+R, typing in
ncpa.cpl
and pressing OK:
-
Right click your active network connection (the one without any red X mark) and go to its properties.
-
In the properties window, make sure the IPv6 option is NOT selected and then click OK:
After a few seconds, you should now be able to navigate to the Orchestrator from your Cloud Account
For power users, you can also use this PowerShell command to disable IPv6 on all network cards:
Get-NetAdapterBinding | ? {$_.ComponentID -like "ms_tcpip6" -and $_.Enabled -like "True"} | Set-NetAdapterBinding -Enabled $False
Make sure to run your PowerShell as admin for it to work.