Penguin

Differences between version 8 and predecessor to the previous major change of SSHErrors.

Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History

Newer page: version 8 Last edited on Thursday, August 19, 2004 10:17:50 pm by StefanKuklik Revert
Older page: version 7 Last edited on Monday, August 16, 2004 9:18:41 am by PerryLorier Revert
@@ -44,7 +44,19 @@
  
 !!! <tt>Disconnecting: bad packet length 1349676916.</tt> 
  
 There was a protocol error, normally due to conflicting versions of ssh on the two machines. You might get this on a machine running [Slackware] version 7 (where OpenSSH-1.2 only supports [SSH] protocol 1.5) when trying to [SSH] to a machine running [Slackware] 8 (with OpenSSH-3.4 and only using [SSH] protocol 2). 
+  
+To solve this problem, you may either install a ssh client which supports [SSH] protocol 2 on the source machine, or change the configuration of the ssh server on the destination machine.  
+  
+To do the the latter, look for a file named sshd_config, usually in /etc/ssh. Change the line:  
+  
+Protocol 2  
+  
+to  
+  
+Protocol 2,1  
+  
+After restarting the ssh-server you may logon using clients with [SSH] protocol 1 as well.  
  
 ---- 
 Part of CategorySecurity and CategoryNetworking