Changes between Version 6 and Version 7 of Encryption/SSL
- Timestamp:
- 08/30/16 07:13:09 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Encryption/SSL
v6 v7 23 23 {{{ 24 24 xpra start --start=xterm \ 25 --bind-tcp=0.0.0.0:10000 --ssl-cert= ./cert.pem --ssl=on25 --bind-tcp=0.0.0.0:10000 --ssl-cert=/path/to/cert.pem --ssl=on 26 26 }}} 27 27 or for SSL only: 28 28 {{{ 29 29 xpra start --start=xterm \ 30 --bind-ssl=0.0.0.0:10000 --ssl-cert= ./cert.pem30 --bind-ssl=0.0.0.0:10000 --ssl-cert=/path/to/cert.pem 31 31 }}} 32 32 * client: … … 79 79 Use openssl to verify that this xpra server uses SSL and that the certificate can be verified using the "ca.crt" authority file: (it should print {{{Verify return code: 0 (ok)}}}): 80 80 {{{ 81 openssl s_client -connect 127.0.0.1:10000 -CAfile ca.crt < /dev/null81 openssl s_client -connect 127.0.0.1:10000 -CAfile /path/to/ca.crt < /dev/null 82 82 }}} 83 83 Connect the xpra client: 84 84 {{{ 85 xpra attach ssl:localhost:10000 --ssl-ca-cert= ./ca.crt85 xpra attach ssl:localhost:10000 --ssl-ca-cert=/path/to/ca.crt 86 86 }}} 87 87 }}}