I'm trying to use ncat to connect between virtual windows7 and linux machines.
On linux:
ncat -vnl 4444 --ssl
On windows:
ncat -v 10.10.14.2 4444 --ssl
And when I try to connect from the client I get this error:
Ncat: Failed SSL connection from 10.10.14.2: error:1417D102:SSL routines:
tls_process_client_hello:unsupported protocol
Things I tried that did not work:
- Adding extra parameters --ssl-cert test-cert.pem --ssl-key test-key.pem
Trying the other way around(linux client, windows server) Then I get this error:
Failed SSL connection...routines:ssl3_get_record wrong version number
EDIT:
I noticed it works if in client I use
openssl s_client -connect
instead of ncat -v --ssl.
How I can I get it working by ncat in this case?