Hello,
Thank you for posting question on Microsoft Windows forum!
Based on provided Event ID 36874, this event or Schannel error which occurs because the client attempting to connect to your server using TLS 1.2 is offering a list of cipher suites that your server either doesn't support or isn't configured to use. In other words, the client and server cannot agree on a common encryption method to secure their communication, leading to a failed TLS connection request. The followings are a few potential troubleshooting steps to identify the supported cipher suites on both the client and server.
1 Identifying Server Cipher Suites:
- You can view the configured cipher suites on your Windows server using PowerShell:
- Get-TlsCipherSuite
- Using tools like IIS Crypto (a free GUI tool) can easily show and modify the enabled cipher suites, protocols, and hashing algorithms.
- Identifying Client Cipher Suites:
- To view the configured cipher suites on client. If the client is external. If you control the client, you can use similar methods (e.g., Get-TlsCipherSuite if it's a Windows client).
- For external clients, you might need to use network capture tools like Wireshark on your server to inspect the "Client Hello" packet during the TLS handshake. This packet lists the cipher suites offered by the client.
- Online SSL/TLS test tools (e.g., SSL Labs Server Test) can also show which cipher suites your server is offering to external clients, which can help deduce what clients might be compatible.
- Using tools like IIS Crypto (a free GUI tool) can easily show and modify the enabled cipher suites, protocols, and hashing algorithms.
- For more information about the tool https://www.nartac.com/Products/IISCrypto
You can also refer to below article for more information regarding the Event ID or Schannel error 36874
https://learn.microsoft.com/en-us/archive/blogs/silvana/schannel-errors-on-scom-agent
Hope the above information is helpful!