Salut,
/etc/init.d/ssh start
Ce n'est pas plutôt /etc/init.d/sshd start
Moi j'ai dans iptables une régle de genre
iptables -A INPUT -i eth0 -p tcp -s xxx.xxx.xxx.xxx -d 10.0.0.2 --dport 22 -j ACCEPT
Pour ps aux | grep ssh
3847 tty1 S+ 0:00 grep ssh qui veut dire que ton daemon sshd n'est pas démarré
[lamitest@localhost ~]$ ps aux | grep ssh
root 1853 0.0 0.4 3368 1260 ? Ss 18:09 0:00 /usr/local/sbin/sshd
lamitest 2648 0.0 0.2 3776 744 pts/0 R+ 18:36 0:00 grep ssh
[lamitest@localhost ~]$


