-
-
Notifications
You must be signed in to change notification settings - Fork 171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
multiple authentication modules per socket type #1728
Comments
Done in r17775, r17777 + r17890 for proxy server. Minor fix in r17824. Examples: echo -n 1234 > pass1.txt
echo -n 5678 > pass2.txt
xpra start --start=xterm :10 -d auth \
--bind-tcp=0.0.0.0:10000
--tcp-auth=file:filename=pass1.txt
--tcp-auth=file:filename=pass2.txt xpra attach tcp://localhost:10000/ The client should prompt for the password twice. Also added in r17776 is the ability to tell the client what we are prompting for: xpra start --bind-tcp=0.0.0.0:10000 --tcp-auth=file:filename=password.txt,prompt='secret no 1' |
See also tcp wrappers: #1730 |
2017-12-30 00:03:04: maxmylyn commented
|
That syntax is invalid and this is immediately obvious when you look at the server output:
The correct syntax is
Again, that doesn't make sense, see the man page and |
2018-01-04 18:47:47: maxmylyn commented
|
xpra attach tcp:192.168.1.138:2200 --auth=file,filename=pass1.txt --auth=file,filename=pass4.txt -d auth That still does not make any sense. As per the examples and documentation,
No, it's not. Neither option makes any difference whatsoever to a client.
You don't.
How do I restore input echoing in the terminal?
Both should work. |
2018-01-09 17:04:58: maxmylyn commented
|
Caused #1740 |
Split from #1690.
This will give us more flexibility, including the ability to authenticate with two passwords, password and dialog, etc.
The text was updated successfully, but these errors were encountered: