22 | | The authentication modules used are specified using |
| 22 | Starting with version 4.0, the preferred way of specifying authentication is within the socket option itself, ie for TCP: |
| 23 | {{{ |
| 24 | xpra start --start=xterm -d auth |
| 25 | --bind-tcp=0.0.0.0:10000,auth=file:filename=password.txt |
| 26 | }}} |
| 27 | So that multiple sockets can use different authentication modules, and those modules can more easily be chained: |
| 28 | {{{ |
| 29 | xpra start --start=xterm -d auth \ |
| 30 | --bind-tcp=0.0.0.0:10000,auth=hosts,auth=file:filename=password.txt --bind |
| 31 | --bind-tcp=0.0.0.0:10001,auth=sys |
| 32 | }}} |
| 33 | |
| 34 | |
| 35 | ---- |
| 36 | |
| 37 | For older versions, the authentication modules used are specified using |