The security scanner (Qualys, Nessus, Tenable, Rapid7, etc.) identified self-signed certificates on the Operations Cloud Proxy appliance on ports 1514, 6514, or 8443
The Operations cloud proxy appliance utilizes self-signed SSL certificates for specific functions. These SSL certificates cannot be modified.
Log in to the cloud proxy appliance as root via SSH or vSphere Console
Create a backup copy of the configuration files that will be edited
For the Log Forwarding feature (ports 1514 and 6514)
cp -p /opt/vmware/etc/vmware-vcf-logForwarder-firewall.conf{,.$(date '+%Y%m%d_%H%M%S')}For the open source telegraf feature (port 8443)
cp -p /opt/vmware/etc/vmware-vcops-arc-firewall.conf{,.$(date '+%Y%m%d_%H%M%S')}Open the configuration file for editing
For Log Forwarding feature (ports 1514 and 6514)
vi /opt/vmware/etc/vmware-vcf-logForwarder-firewall.confFor the open source telegraf feature (port 8443)
vi /opt/vmware/etc/vmware-vcops-arc-firewall.confRemove the ports from the TCPPORTS= line
For Log Forwarding feature (ports 1514 and 6514)
Example before edit
TCPPORTS="$TCPPORTS 8500 9543 9000 6514 1514 514"Example after edit
TCPPORTS="$TCPPORTS 8500 9543 9000 514"For the open source telegraf feature (port 8443)
Example before edit
TCPPORTS="$TCPPORTS 8443"Example after edit
TCPPORTS="$TCPPORTS"Save and exit the file
:wqRestart the firewall service
systemctl restart vmware-vcops-firewallRepeat steps 1 through 6 for any other cloud proxy appliances
Note: These manual firewall changes will be overwritten during the next cloud proxy update, causing the security scanner to flag the appliance again post-upgrade. The same steps will need to be reapplied after any upgrade of the cloud proxy.