Hello Nataliia,
For Wazuh-indexer/dashboard:
You’ll need to modify the /etc/wazuh-indexer/opensearch.yml
And add the following configuration block:
plugins.security.ssl.http.enabled_ciphers:
- "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256"
- "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384"
- "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256"
- "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384"
plugins.security.ssl.http.enabled_protocols:
- "TLSv1.2"
plugins.security.ssl.transport.enabled_protocols:
- "TLSv1.2"
And then restart the service to apply the changes:
systemctl restart wazuh-indexer
Then, it is necessary to add the following line to your /etc/wazuh-dashboard/opensearch_dashboards.yml
server.ssl.supportedProtocols: ["TLSv1.2"]
And then restart the service to apply the changes:
systemctl restart wazuh-dashboard
Hope this information helps.
Regards