NOTE: The example URL (dev-prod05.conferdeploy.net) is specific to Prod 05. For other environments see Firewall Configuration.
Test-NetConnection -computername dev-prod05.conferdeploy.net -Port 443 -InformationLevel Detailed
TcpTestSucceeded : True
Via PowerShell
Test-NetConnection -computername content.carbonblack.io -Port 443 -InformationLevel Detailed
TcpTestSucceeded : True
Via Live Response
execfg "c:\Windows\System32\WindowsPowerShell\v1.0\Powershell.exe" Test-NetConnection -computername content.carbonblack.io -Port 443 -InformationLevel Detailed
TcpTestSucceeded : True
Note that 4.1+ sensors use a new Signature Update URL (liveupdate.symantec.com)
Via PowerShell
For sensors on version 4.1+
Test-NetConnection -computername liveupdate.symantec.com -Port 443 -InformationLevel Detailed
For sensors on version 4.0.3 and below:
--For HTTPS
Test-NetConnection -computername updates2.cdc.carbonblack.io -Port 443 -InformationLevel Detailed
--For HTTP
Test-NetConnection -computername updates2.cdc.carbonblack.io -Port 80 -InformationLevel Detailed
TcpTestSucceeded : True
Via Live Response
--For HTTPS
execfg "c:\Windows\System32\WindowsPowerShell\v1.0\Powershell.exe" Test-NetConnection -computername updates2.cdc.carbonblack.io -Port 443 -InformationLevel Detailed
For HTTP
execfg "c:\Windows\System32\WindowsPowerShell\v1.0\Powershell.exe" Test-NetConnection -computername updates2.cdc.carbonblack.io -Port 80 -InformationLevel Detailed
TcpTestSucceeded : True
Any other documented firewall URL (like the Third-party certificate validation URL http://ocsp.digicert.com which uses port 80 ) can be tested using the above steps by replacing the computername value and appropriate Port value.
Test-NetConnection -computername http://ocsp.digicert.com -Port 80 -InformationLevel Detailed
TcpTestSucceeded : True
Via Curl
curl https://dev-prod05.conferdeploy.net/services/healthCheck/
{"appStats":{"Commit":"HEAD","Build":"snapshot","Branch":"develop"},"message":"success","success":true}
Via Curl
curl https://content.carbonblack.io
<?xml version="1.0" encoding="UTF-8"?><Error><Code>MissingKey</Code><Message>Missing Key-Pair-Id query parameter or cookie value</Message></Error>
Via wget
Resolving content.carbonblack.io (content.carbonblack.io)... <ip_addresses> ...
Connecting to content.carbonblack.io (content.carbonblack.io)|<ip_address>|:443... connected.
HTTP request sent, awaiting response... 403 Forbidden
YYYY-MM-DD hh:mm:ss ERROR 403: Forbidden.