-
Short: What I try to accomplish: Env:
server command: xpra start --pulseaudio=no --webcam=no \
--notifications=no --exit-with-children=yes --terminate-children --sharing=no --mdns=yes --start-new-commands \
--dbus-launch=no --start-child=xterm --bind-tcp=192.168.3.3:11001 \
--tcp-auth=file:filename=/home/vmm/.xpra/xpst/1001/pw :1001` client command xpra attach tcp://vmm@s1200:11001/1001,auth=file:filename=<abs-path-to-pw-file> \
--pulseaudio=no --webcam=no --notifications=no --sharing=no --speaker=disabled --microphone=disabled \
--enable-pings --debug=auth NOTE: LOG:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is not a supported version.
These are already the defaults.
This doesn't do anything with
This is already the default.
The
The documentation has been improved in de7ab1d : https://github.com/Xpra-org/xpra/blob/master/docs/Usage/Authentication.md |
Beta Was this translation helpful? Give feedback.
This is not a supported version.
These are already the defaults.
This doesn't do anything with
xpra attach
.This is already the default.
The
1001
display number is likely unnecessary here since you only have a single server running on that TCP port.Also, this syntax is not valid: client authentication handlers are configured using the
challenge-handlers
option.ie:
The documentation has been improved in de7ab1d : https://github.com/Xp…