This is normally caused due to security policies related to Firewalls, or other networking related security configurations that prevent access to the SeaLights API. In order to verify this is the case, try running a cURL command to your dashboard URL:
curl -vI https://<YourCustomDNSName>.sealights.co |
|
If using a proxy, you should add the relevant parameter
curl -vI https://<YourCustomDNSName>.sealights.co --proxy http://myproxy.mycompany.int |
If you need a generic Sealights endpoint, you can use the following command
curl -vI https://csdemo.sealights.co |
In case this command fails, it is important to understand why. Looking at the detailed output (given by the |
The above cURL commands runs on native Linux. If using Windows, you will need to run it from a PowerShell prompt as it allows |
In case a firewall is present, it needs to allow network traffic to reach the SeaLights platform and depending on your organization policy, you can use one of the following solutions.
The Firewall should allow outbound connections on port 443 (TLS v1.2) to our domain https://*.sealights.co
.
For a more restrictive rule, you can open the connections to your Sealights dashboard URL only.
As SeaLights' networking is managed in AWS, the full list of subnets which can point to our platform, can be found in the ip-ranges.json file supplied by AWS.
Be sure to follow the next steps to understand which IP addresses need to be added to your exceptions list
Download the provided ip-ranges.json
file from AWS.
From the file, filter out the entires related to CloudFront (using jq):
cat ip-ranges.json | jq '.prefixes[] | select(.service=="CLOUDFRONT")' |
Add the subnets output from the previous stage to your Firewall exception list for outbound connections on port 443 (TLS v1.2)
The content by label feature displays related articles automatically, based on labels you choose. To edit options for this feature, select the placeholder below and tap the pencil icon.
|