mirror of
https://github.com/pivpn/pivpn.git
synced 2024-12-19 11:20:15 +00:00
Fix TLS handshake error
When connecting with Tunnelblick client I received following error: TLS_ERROR: BIO read tls_read_plaintext error: error:140760FC:SSL routines:SSL23_GET_CLIENT_HELLO:unknown protocol TLS Error: TLS object -> incoming plaintext read error TLS Error: TLS handshake failed To fix the problem the same tls-version-min directive used in server configuration has to be added to the client config.
This commit is contained in:
parent
26b4cab411
commit
b5db30985a
1 changed files with 1 additions and 0 deletions
|
@ -8,6 +8,7 @@ persist-key
|
||||||
persist-tun
|
persist-tun
|
||||||
key-direction 1
|
key-direction 1
|
||||||
remote-cert-tls server
|
remote-cert-tls server
|
||||||
|
tls-version-min 1.2
|
||||||
verify-x509-name SRVRNAME name
|
verify-x509-name SRVRNAME name
|
||||||
cipher AES-256-CBC
|
cipher AES-256-CBC
|
||||||
auth SHA256
|
auth SHA256
|
||||||
|
|
Loading…
Reference in a new issue