Displaying 3 results from an estimated 3 matches for "forward_x11_trust".
Did you mean:
forward_x11_trusted
2005 Sep 04
2
ControlPersist and multiple X11 forwarding.
Three patches attached.
One implements a 'ControlPersist' option, which when used with
'ControlMaster auto' or 'ControlMaster 'yes' make makes the master
background itself and stick around after its own primary session is
completed.
The second causes control clients to pass X11 display, auth proto and
auth data over the control socket so that appropriate X11
2014 Feb 10
0
[PATCH] Basic SCTP support for OpenSSH client and server
...arg);
break;
+ case 'h':
+ options.connect_via_sctp = 0;
+ break;
+ case 'H':
+#ifdef USE_SCTP
+ options.connect_via_sctp = 1;
+#else
+ fprintf(stderr, "no support for SCTP.\n");
+#endif
+ break;
case 'Y':
options.forward_x11 = 1;
options.forward_x11_trusted = 1;
diff --git a/ssh_config b/ssh_config
index 03a228f..2e8b9de 100644
--- a/ssh_config
+++ b/ssh_config
@@ -46,3 +46,4 @@
# VisualHostKey no
# ProxyCommand ssh -q -W %h:%p gateway.example.com
# RekeyLimit 1G 1h
+# ConnectViaSCTP no
diff --git a/ssh_config.5 b/ssh_config.5
index 3cadc...
2010 Jan 14
1
ssh(1) multiplexing rewrite
..., __func__, id);
-
- display = getenv("DISPLAY");
- if (cctx->want_x_fwd && options.forward_x11 && display != NULL) {
- char *proto, *data;
- /* Get reasonable local authentication information. */
- client_x11_get_proto(display, options.xauth_location,
- options.forward_x11_trusted, &proto, &data);
- /* Request forwarding with authentication spoofing. */
- debug("Requesting X11 forwarding with authentication spoofing.");
- x11_request_forwarding_with_spoofing(id, display, proto, data);
- /* XXX wait for reply */
- }
-
- if (cctx->want_agent_fwd &...