Problème de connection via SSH

Forum sur la sécurité des réseaux, la configuration des firewalls, la mise en place de protections contre les attaques, de DMZ, de systèmes anti-intrusion ...

Modérateur: modos Ixus

Problème de connection via SSH

Messagepar EtienneRutten » 27 Fév 2005 19:23

Bonjour à tous,

Question de gros débutant ...

J'ai une gentoo 2004.3 installée avec un postfix qui fonctionne apparement bien. Mon problème est le suivant : impossible de me connecter via putty sur ma gentoo en tant qu'utilisateur. Par contre en tant que root tout va bien !

Quelqu'un peut-il m'aider ?

D'avance merci
EtienneRutten
Matelot
Matelot
 
Messages: 6
Inscrit le: 27 Fév 2005 19:17

Messagepar Zeno » 27 Fév 2005 19:47

Que dis ton fichier "ssh_config" ??
Avatar de l’utilisateur
Zeno
Vice-Amiral
Vice-Amiral
 
Messages: 767
Inscrit le: 22 Déc 2003 01:00
Localisation: Lyon

Messagepar EtienneRutten » 27 Fév 2005 20:45

Il ne dit pas grand chose tout est en commentaires. Pour info le voici :

**** CUT HERE
# $OpenBSD: ssh_config,v 1.19 2003/08/13 08:46:31 markus Exp $

# This is the ssh client system-wide configuration file. See
# ssh_config(5) for more information. This file provides defaults for
# users, and the values can be changed in per-user configuration files
# or on the command line.

# Configuration data is parsed as follows:
# 1. command line options
# 2. user-specific file
# 3. system-wide file
# Any configuration value is only changed the first time it is set.
# Thus, host-specific definitions should be at the beginning of the
# configuration file, and defaults at the end.

# Site-wide defaults for various options

# Host *
# ForwardAgent no
# ForwardX11 no
# RhostsRSAAuthentication no
# RSAAuthentication yes
# PasswordAuthentication yes
# HostbasedAuthentication no
# BatchMode no
# CheckHostIP yes
# AddressFamily any
# ConnectTimeout 0
# StrictHostKeyChecking ask
# IdentityFile ~/.ssh/identity
# IdentityFile ~/.ssh/id_rsa
# IdentityFile ~/.ssh/id_dsa
# Port 22
# Protocol 2,1
# Cipher 3des
# Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc
# EscapeChar ~


*** END CUT
EtienneRutten
Matelot
Matelot
 
Messages: 6
Inscrit le: 27 Fév 2005 19:17

Messagepar Zeno » 27 Fév 2005 21:17

C'etait le "sshd_config" en fait... dsl..
Avatar de l’utilisateur
Zeno
Vice-Amiral
Vice-Amiral
 
Messages: 767
Inscrit le: 22 Déc 2003 01:00
Localisation: Lyon

Messagepar EtienneRutten » 27 Fév 2005 21:52

'Suffit de demander ... !

**** CUT HERE
# $OpenBSD: sshd_config,v 1.69 2004/05/23 23:59:53 dtucker Exp $

# This is the sshd server system-wide configuration file. See
# sshd_config(5) for more information.

# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin

# The strategy used for options in the default sshd_config shipped with
# OpenSSH is to specify options with their default value where
# possible, but leave them commented. Uncommented options change a
# default value.

#Port 22
Protocol 2
#ListenAddress 0.0.0.0
#ListenAddress ::

# HostKey for protocol version 1
#HostKey /etc/ssh/ssh_host_key
# HostKeys for protocol version 2
#HostKey /etc/ssh/ssh_host_rsa_key
#HostKey /etc/ssh/ssh_host_dsa_key

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

# Logging
#obsoletes QuietMode and FascistLogging
#SyslogFacility AUTH
#LogLevel INFO

# Authentication:

#LoginGraceTime 2m
#PermitRootLogin yes
#StrictModes yes
#MaxAuthTries 6

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

# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
#RhostsRSAAuthentication no
# similar for protocol version 2
#HostbasedAuthentication no
# Change to yes if you don't trust ~/.ssh/known_hosts for
# RhostsRSAAuthentication and HostbasedAuthentication
#IgnoreUserKnownHosts no
# Don't read the user's ~/.rhosts and ~/.shosts files
#IgnoreRhosts yes
# To disable tunneled clear text passwords, change to no here!
PasswordAuthentication no
#PermitEmptyPasswords no

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

# Kerberos options
#KerberosAuthentication no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes
#KerberosGetAFSToken no

# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes

# Set this to 'yes' to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication mechanism.
# Depending on your PAM configuration, this may bypass the setting of
# PasswordAuthentication, PermitEmptyPasswords, and
# "PermitRootLogin without-password". If you just want the PAM account and
# session checks to run without PAM authentication, then enable this but set
# ChallengeResponseAuthentication=no
UsePAM yes

#AllowTcpForwarding yes
#GatewayPorts no
#X11Forwarding no
#X11DisplayOffset 10
#X11UseLocalhost yes
#PrintMotd yes
#PrintLastLog yes
#TCPKeepAlive yes
#UseLogin no
#UsePrivilegeSeparation yes
#PermitUserEnvironment no
#Compression yes
#ClientAliveInterval 0
#ClientAliveCountMax 3
#UseDNS yes
#PidFile /var/run/sshd.pid
#MaxStartups 10

# no default banner path
#Banner /some/path

# override default of no subsystems
Subsystem sftp /usr/lib/misc/sftp-server
EtienneRutten
Matelot
Matelot
 
Messages: 6
Inscrit le: 27 Fév 2005 19:17

Messagepar Zeno » 27 Fév 2005 22:07

Je pense que tu devrai rajouter:

SyslogFacility AUTHPRIV
GSSAPIAuthentication yes
ChallengeResponseAuthentication no


Changer:

PasswordAuthentication yes
Avatar de l’utilisateur
Zeno
Vice-Amiral
Vice-Amiral
 
Messages: 767
Inscrit le: 22 Déc 2003 01:00
Localisation: Lyon

Messagepar EtienneRutten » 27 Fév 2005 22:45

cette ligne me retourne une erreur :

GSSAPIAuthentication yes
(qu'elle soit mise à yes ou no)


le reste ne change rien au problème sauf que je ne savais plus du tout me logger même en root ...!
EtienneRutten
Matelot
Matelot
 
Messages: 6
Inscrit le: 27 Fév 2005 19:17

Messagepar Zeno » 27 Fév 2005 22:54

Mince... Désolé pour la perte de temps.. C'est ettonant car de toute façon, ton fichier actuel, va bien dans la PAM chercher les user.. Tu n'a rien trouvé à ce sujet sur des forum specialisé Gentoo ?
Avatar de l’utilisateur
Zeno
Vice-Amiral
Vice-Amiral
 
Messages: 767
Inscrit le: 22 Déc 2003 01:00
Localisation: Lyon

Messagepar EtienneRutten » 28 Fév 2005 00:09

Non pas encore je vais tenter de poster quelque chose demain matin sur leur forum car ce soir je vais aller faire dodo !
EtienneRutten
Matelot
Matelot
 
Messages: 6
Inscrit le: 27 Fév 2005 19:17

Messagepar EtienneRutten » 28 Fév 2005 21:41

Après une bonne nuit de sommeil et un post sur les forums anglais chez gentoo, j'ai eu l'idée d'éditer mon fichier /etc/shadow et de retirer le mot de passe de l'utilisateur, puis de recréer le password via webmin.

Et là, oh miracle cela marche ...


Merci à tous ceux qui ont pris le temps de regarder mon message !
EtienneRutten
Matelot
Matelot
 
Messages: 6
Inscrit le: 27 Fév 2005 19:17


Retour vers Sécurité et réseaux

Qui est en ligne ?

Utilisateur(s) parcourant actuellement ce forum : Aucun utilisateur inscrit et 1 invité