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.comWhile running the Curl command to the proxy, do packet captures on the virtual switch port of the vCenter VM. Confirm if TCP SYN packets are being sent to the proxy, and if a SYN\ACK is being returned by the proxy:
net-stats -l | grep <your vCenter VM name> (command to get the switch port ID of the vCenter VM)
pktcap-uw --switchport <your vCenter VM switch port ID> --capture VnicRx,VnicTx --ip <your proxy IP address> --tcpport <your proxy TCP port> -o - | tcpdump-uw -ner -
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.