PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : SSHD mit Protocol 1



Saiya-Jin
15.07.05, 13:01
Moin Leute,

ich muss temporär meinen SSH Server Protocol 1 tauglich machen bekomme es aber irgendwie nicht geschissen. :rolleyes: Hoffe ihr könnt mir da ein wenig weiterhelfen... die Manpages tun es jedenfalls nicht.
Ich verwende derzeit ein Debian Paket mit folgender Version -> OpenSSH_3.8.1p1 Debian-8.sarge.4, OpenSSL 0.9.7e 25 Oct 2004

Bisher habe ich ein neues Zertifikat erzeugt:

ssh-keygen -t rsa1 -f /etc/ssh/ssh_host_rsa1_key

Protokoll 1 und den neuen Key in der Konfiguration angegeben:

Protocol 1,2
# HostKeys for protocol version 1
HostKey /etc/ssh/ssh_host_rsa1_key
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key

Bei einem Neustart des Servers bekomme ich folgende Meldung:

Restarting OpenBSD Secure Shell server: sshdCould not load host key: /etc/ssh/ssh_host_rsa1_key
Disabling protocol version 1. Could not load host key

Und hier nochmal meine gesamte Konfiguration:

# Package generated configuration file
# See the sshd(8) manpage for details

# What ports, IPs and protocols we listen for
Port 22
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
#ListenAddress 0.0.0.0
Protocol 1,2
# HostKeys for protocol version 1
HostKey /etc/ssh/ssh_host_rsa1_key
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes

# Lifetime and size of ephemeral version 1 server key
KeyRegenerationInterval 3600
ServerKeyBits 768

# Logging
SyslogFacility AUTH
LogLevel INFO

# Authentication:
LoginGraceTime 600
# PermitRootLogin no
PermitRootLogin yes
StrictModes yes

RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile %h/.ssh/authorized_keys

# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
#IgnoreUserKnownHosts yes

# To enable empty passwords, change to yes (NOT RECOMMENDED)
PermitEmptyPasswords no

# Change to no to disable s/key passwords
#ChallengeResponseAuthentication yes

# Change to yes to enable tunnelled clear text passwords
PasswordAuthentication no


# To change Kerberos options
#KerberosAuthentication no
#KerberosOrLocalPasswd yes
#AFSTokenPassing no

# Kerberos TGT Passing does only work with the AFS kaserver
#KerberosTgtPassing yes

X11Forwarding no
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
KeepAlive yes
#UseLogin no

#MaxStartups 10:30:60
#Banner /etc/issue.net

Subsystem sftp /usr/lib/sftp-server

UsePAM yes

temir
15.07.05, 13:25
ls -la /etc/ssh ?

Saiya-Jin
15.07.05, 13:45
Die Dateien sind vorhanden, falls du das meinst. :-)

insgesamt 160
drwxr-xr-x 2 root root 4096 2005-07-15 12:51 .
drwxr-xr-x 68 root root 4096 2005-07-15 12:47 ..
-rw-r--r-- 1 root root 111892 2004-11-28 16:33 moduli
-rw-r--r-- 1 root root 1185 2004-11-28 16:33 ssh_config
-rw-r--r-- 1 root root 1834 2005-07-15 12:51 sshd_config
-rw-r--r-- 1 root root 1835 2005-07-15 12:51 sshd_config~
-rw------- 1 root root 668 2005-01-17 16:27 ssh_host_dsa_key
-rw-r--r-- 1 root root 600 2005-01-17 16:27 ssh_host_dsa_key.pub
-rw------- 1 root root 525 2005-07-15 12:47 ssh_host_rsa1_key
-rw-r--r-- 1 root root 329 2005-07-15 12:47 ssh_host_rsa1_key.pub
-rw------- 1 root root 887 2005-01-17 16:27 ssh_host_rsa_key
-rw-r--r-- 1 root root 220 2005-01-17 16:27 ssh_host_rsa_key.pub

temir
15.07.05, 14:07
Ich meinte die Berechtigungen für die Dateien, - die stimmen aber.
Vielleicht kann ein `sshd -d ...` mehr Details bringen.

Saiya-Jin
15.07.05, 14:16
Die Debug Informationen über ein sshd -d -d -d -D :) geben leider auch nicht mehr Preis als das was beim Starten des Scriptes ausgegeben wird.

Tomek
16.07.05, 13:22
Saiya-Jin: Lies bitte, wie man hier richtig postet (http://www.linuxforen.de/forums/showthread.php?t=164474).

temir
16.07.05, 13:23
Nun fällt mir auch nicht mehr ein als dass man den Namen für den RSA1
Hostkey aus der manpage verwendet; wärs fast ein 'Bug', wenns daran liege...