Environment
- Carbon Black Cloud Sensor: 3.2.x.x and Higher
- Microsoft Windows: All Supported Versions
Question
After defining proxy settings during command line installation, can those proxy settings be changed?
Answer
Yes. The proxy credentials can changed by using the sensor's "cfg.ini" file:
- Place sensor into bypass mode by running commands:
cd c:\Program Files\Confer\
repcli bypass 1
- Shutdown the sensor service:
repcli stopCbServices
- Open the cfg.ini file with a text editor
- If present, remove:
ProxyServer=
ProxyServerCredentials=
- Add:
ProxyServer=[PROXY_IP_OR_DOMAIN]:[PROXY_PORT]
ProxyServerCredentials=[USERNAME]:[PASSWORD] (Optional- if proxy requires authenitcation)
PreferStaticProxyOverLastUsed=true
Example:
ProxyServer=TestProxy.net:8080
ProxyServerCredentials=TestUsername:TestPassword
PreferStaticProxyOverLastUsed=true
Replace PROXY_IP_OR_DOMAIN, PROXY_PORT, USERNAME and PASSWORD with the corresponding values.
- Start the sensor service, this will force the sensor to update its proxy internal configuration, with the caveat that should the sensor be unable to connect to the proxy server/appliance, it may attempt to bypass it
sc start CbDefense
- Reload/refresh the sensor configuration with the recently-made changes:
- Remove device from bypass:
- To force an immediate check-in (optional):
Additional Notes
- PreferStaticProxyOverLastUsed (available in 3.6 October Maintenance build) is optional if the intent is making a successful connection to the cloud. However, if the goal is for the sensor to prioritize the new proxy connection provided over other previously used, then PreferStaticProxyOverLastUsed should be used.
- Important: repcli functionality needs to be enabled (see KB), in order to follow the steps above
- If the current cloud communications are all still successful, the proxy won't re-evaluate it's current proxy settings. Restarting the CbDefense service might be needed for immediate re-evaluation.
Related Content