salut à tous,

voilà mon problème : je veux configurer une machine qui est dépourvue d'écran. Pour la configurer, je dois donc me connecter en root via ssh sur cette machine. Le problème est que j'ai ces erreurs là :
ssh -v root@192.168.0.2

OpenSSH_3.8.1p1 Debian-8.sarge.4, OpenSSL 0.9.7e 25 Oct 2004
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Connecting to 192.168.0.2 [192.168.0.2] port 22.
debug1: Connection established.
debug1: identity file /home/toph/.ssh/identity type -1
debug1: identity file /home/toph/.ssh/id_rsa type -1
debug1: identity file /home/toph/.ssh/id_dsa type 2
ssh_exchange_identification: Connection closed by remote host
j'ai regardé sur le net et la réponse la plus fréquemment donnée est un problème dans le hosts.allow; Voici le mien:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
 
ALL:192.168.0.3/255.255.255.0
Je vous passe aussi ma config dans sshd_config :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
 
# 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 2
# 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 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
#KerberosTicketCleanup 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
Je veux pas me casser la tête à faire des connexions sécurisées pour l'instant. Une connexion juste par mot de passe me suffit. J'ai aussi essayé avec un autre utilisateur et ça marche pas non plus.

Quelqu'un pourrait-il me dire si j'ai une erreur dans mon fichier de configuration ??? Est-ce que l'erreur peut venir d'autre part ???

Merci d'avance

PS : Je sais pas si c'est important mais le telnetd me refuse aussi la connexion(il me manque le prompt du login)