Use
To test with
You see a response similar to the following if there's connectivity to the GTI server:
RemoteAddress : x.x.x.x
RemotePort : 443
InterfaceAlias : Ethernet 2
SourceAddress : x.x.x.x
TcpTestSucceeded : True
To test with
- If there isn't a proxy server:
curl -kv https://amcore-ens.rest.gti.trellix.com:443 - If there's a proxy server:
curl -kvx proxyaddress:port https://amcore-ens.rest.gti.trellix.com:443
* Trying 3.14.236.220:443...
* Connected to amcore-ens.rest.gti.trellix.com (3.14.236.220) port 443
* schannel: disabled automatic use of client certificate
* ALPN: curl offers http/1.1
* ALPN: server accepted http/1.1
* using HTTP/1.1
> GET / HTTP/1.1
> Host: amcore-ens.rest.gti.trellix.com
> User-Agent: curl/8.4.0
> Accept: */*
>
< HTTP/1.1 403 Forbidden
< Server: webserver
< Date: Tue, 30 Jan 2024 15:18:17 GMT
< Content-Type: text/html
< Content-Length: 142
< Connection: keep-alive
< ETag: "62d94fb7-8e"
< Strict-Transport-Security: max-age=31536000; includeSubDomains; preload;
< X-Frame-Options: DENY
<
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>webserver</center>
</body>
</html>* Connection #0 to host amcore-ens.rest.gti.trellix.com left intact
NOTES:
- The above output is from an unproxied internet connection. A proxied connection might provide a different output from the one above depending on your network environment and configuration.
- The "403 Forbidden" message is expected due to a lack of authentication in the
Curl command. - If the connection fails, you will see an output similar the one shown below:
C:\>curl -kv https://amcore-ens.rest.gti.trellix.com:443
* Trying 3.131.31.255:443...
* connect to 3.131.31.255 port 443 failed: Bad access
* Trying 3.14.236.220:443...
* connect to 3.14.236.220 port 443 failed: Bad access
* Failed to connect to amcore-ens.rest.gti.trellix.com port 443 after 69 ms: Couldn't connect to server
* Closing connection
curl: (7) Failed to connect to amcore-ens.rest.gti.trellix.com port 443 after 69 ms: Couldn't connect to server