Not Connected
"This issue typically occurs due to incorrect proxy configuration or network connectivity problems between the vCenter Server and the update sources. See Configuring the vSphere Lifecycle Manager Download Sources
Also, using HTTPS for the proxy server connection in vSphere Lifecycle Manager is not supported. This is due to limitations in the Python "requests" module used by VLCM to validate online depots, which does not properly handle HTTPS proxy connections. You must use HTTP for the proxy server connection, even when the final target URLs use HTTPS. This means setting the proxy URL to "http://" in the vCenter configuration, regardless of whether the proxy server itself supports HTTPS connections.
Follow these steps to resolve the issue:
HTTP_PROXY="http://<your-proxy:port>/"
HTTPS_PROXY="http://<your-proxy:port>/"
Note: Use "http://" in these settings even though HTTPS_PROXY is for HTTPS target URLscurl -I http://proxy.example.com
curl -I https://proxy.example.com
HTTP_PROXY="http://<your-proxy:port>/" curl -I http://example.com
HTTPS_PROXY="http://<your-proxy:port>/" curl -I https://example.com
curl -x http://<your-proxy:port> https://example.com/software/VUM/PRODUCTION/addon-main/vmw-depot-index.xml
This command tests downloading directly from the VMware update server through your proxy, using HTTP for the proxy connection but HTTPS for the target URL.
Note:If issues persists consider using Update Manager Download Service (UMDS) - Refer to Configuring the vSphere Lifecycle Manager Download Sources,If these steps do not resolve the issue, contact Broadcom Support for further assistance.