-
Beta Was this translation helpful? Give feedback.
Answered by
najohnsn
Dec 6, 2024
Replies: 1 comment 3 replies
-
If you are not familiar with powershell, you may want to use cmd (command prompt) instead. I suspect your environment variables are not set the way you intended - there should be no ssl handshake with SESSION_SSL=NONE. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With SESSION_SSL=NONE, there is no TLS/handshake. Given the server disconnected you (and that you said you need Tls 1.0), you need one. So, you want SESSION_SSL=1 (or not set). Try setting SESSION_SSL_MINIMUM_TLS=1.0 (see #138). I believe the SSL library usually won't let that go below 1.2.
FYI: I've had success in the past telling sysadmins about being forced to use insecure settings to connect. The result has been the server being upgraded with modern/secure settings. If you know how to contact the sysadmin, that is also something to try.