Replies: 4 comments
-
SSH Ciphers are separare from TLS. SSH does not use SSL, different protocols. Under your sshd.conf check HostKeyAlgorithms and KexAlgorithms for the ciphers set for your server
|
Beta Was this translation helpful? Give feedback.
-
Thank you for your reply, Following are the Ciphers in my RHEL 8.6 server under sshd.conf Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc,aes192-cbc,aes256-cbc I believe they or some of them are not supported by Renci.SshNet.dll, how can we make them support it? |
Beta Was this translation helpful? Give feedback.
-
Not the developer but I believe those are supported. What error did you started having? Anything on the logs of the Linux server?
…Sent from my iPhone
On Aug 17, 2022, at 6:49 AM, ronakt32 ***@***.***> wrote:
Thank you for your reply,
Following are the Ciphers under RHEL 8.6
Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc,aes192-cbc,aes256-cbc
MACs hmac-sha2-512,hmac-sha2-256,hmac-sha1
I believe they or some of them are not supported by Renci.SshNet.dll, how can we make them support it?
Please help!
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.
|
Beta Was this translation helpful? Give feedback.
-
@darkoperator sorry was a bit away from the desk, the following is an error generated : Logs of Working RHEL 8.6 server with SSL TLSv1, TLSv1.2 TLSv1.3 06:20:56:457 - Start SSH Tunneling... Logs of Not Working with RHEL 8.6 server with TLSv1.2 TLSv1.3 08:33:56:037 - Start SSH Tunneling... |
Beta Was this translation helpful? Give feedback.
-
Helo Team,
RHEL 8.6 is not supporting the SSH tunnel via Renci.SshNet.dll, possibly because of the latest TLS 1.3 ciphers
This happens when old communication is via SSL and TLS 1.1 is disabled
Is it possible to update with the latest ciphers and rebuilt the project?
TLS v1.3 supports 5 cipher suites.
– TLS_AES_128_GCM_SHA256
– TLS_AES_256_GCM_SHA384
– TLS_CHACHA20_POLY1305_SHA256
– TLS_AES_128_CCM_SHA256
– TLS_AES_128_CCM_8_SHA256
current dll version we are using is:
Beta Was this translation helpful? Give feedback.
All reactions