dl.broadcom.com through https . /var/log/vmware/vmware-updatemgr/vum-server/vmware-vum-server.log highlights error "At least one online depot is not accessible"curl -vk https://dl.broadcom.com/token/path/.... -x http://proxy.com:port/ # --------> Shows successful connectioncurl -vk https://dl.broadcom.com/token/path/.... -x https://proxy.com:port/ # --------> Shows failed connection. VMware vCenter Server configured with Proxy
This occurs because vCenter sends HTTPS requests to the proxy server using the HTTPS protocol.
However, although the proxy can forward HTTPS traffic, it expects clients to connect to it using HTTP and then perform the HTTPS tunnel through it (via the CONNECT method).
This is as per functioning of proxy servers.
Refer article : CONNECT request method - HTTP | MDN
vi /etc/sysconfig/proxyhttps_proxy from https://proxy.com:port/ to http://proxy.com:port/export https_proxy=http://proxy.com:port/