Changes between Version 34 and Version 35 of Usage
- Timestamp:
- 07/06/18 17:23:34 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Usage
v34 v35 34 34 * on the server which will export the application ({{{xterm}}} in the example), start an xpra server instance on a free display of your choice ({{{:100 in the example}}}): 35 35 {{{ 36 xpra start :100 --start -child=xterm36 xpra start :100 --start=xterm 37 37 }}} 38 38 * then from the client, just connect to this xpra instance: … … 60 60 In this case, use TCP sockets: 61 61 {{{ 62 xpra start --start -child=xterm --bind-tcp=0.0.0.0:1000062 xpra start --start=xterm --bind-tcp=0.0.0.0:10000 63 63 }}} 64 64 Then, assuming that the port you have chosen ({{{10000}}} in the example above) is allowed through the firewall (if any), you can connect from the client using: … … 67 67 }}} 68 68 69 Beware: by default, TCP sockets are insecure. At the very least, you should use the "{{{-- password-file}}}" option to protect those sessions. For more information see the [/wiki/ProxyServer#FileAuthentication File Authentication] page for more information.69 Beware: by default, TCP sockets are insecure. At the very least, you should use the "{{{--tcp-auth=file,filename=mypassword.txt}}}" option to protect those sessions. For more information see [/wiki/Authentication Authentication]. 70 70 }}} 71 71