Displaying 5 results from an estimated 5 matches for "ssh_cmsg_x11_request_forward".
2001 Apr 10
2
LBX Support : Where to start
I would like to put a patch in OpenSSH start lbxproxy on the server if
both ends of the connection support LBX. I'm having difficulty figuring
out where to put this code, specifically I can't seem to find where the
X11 handshaking happens. Could someone help me out on this??
-Carl
2001 Mar 07
2
F-secure v1 client has trouble connecting to openssh-2.5.1p1
I'm observing that mac clients using F-Secure ssh v1 client log into the
ssh server, and then the client just hangs with nothing on the screen.
In the SYSLOG file, I see this:
Accepted password for user from host port whatever
Packet integrity error (62 != 58) at session.c:350
Disconnecting: Packet integrity error. (34)
This is sshd running on IRIX 6.5.3f
2001 Jun 05
1
OpenSSH tmp cleanup
Hi,
I noticed that Markus has fixed the temporary file cleanup problems in
OpenSSH cvs. What files need patching for this ? I only noticed
changes in: session.c, channels.h and channels.c.
-Jarno
--
Jarno Huuskonen <Jarno.Huuskonen at uku.fi>
2001 Feb 19
7
Packet integrity error. (34)
Hi,
I am using Van Dyke SecureCRT 3.2.1 to access an AIX server running
OpenSSH-2.5.0p1. Using ssh1 with X11 forwarding enabled, the server
reports the following error (in the client session):
Packet integrity error. (34)
This problem was not evident in 2.3.0p1. Running sshd in debug gives the
output:
debug1: sshd version OpenSSH_2.5.1p1
debug1: load_private_key_autodetect: type 0 RSA1
2001 Oct 24
2
disable features
...if (compression_level < 1 || compression_level > 9) {
@@ -212,6 +223,7 @@
/* Enable compression after we have responded with SUCCESS. */
enable_compression_after_reply = 1;
success = 1;
+#endif
break;
case SSH_CMSG_REQUEST_PTY:
@@ -219,6 +231,7 @@
break;
case SSH_CMSG_X11_REQUEST_FORWARDING:
+#ifdef WITH_X11FWD
s->auth_proto = packet_get_string(&proto_len);
s->auth_data = packet_get_string(&data_len);
@@ -242,18 +255,22 @@
s->auth_proto = NULL;
s->auth_data = NULL;
}
+#endif
break;
case SSH_CMSG_AGENT_REQUEST_FORWARDING:
+#ifdef...