View Single Post
Posts: 543 | Thanked: 151 times | Joined on Feb 2010 @ Germany
#25
Originally Posted by SubCore View Post
yes, seems ok.
now try
Code:
netstat -pan | grep ssh
that lists network connections / listeners, and that's where you should find a line with ":22", indicating that sshd listens on port 22 (sorry that i wrote :22 should be seen with ps aux )

then you can try
Code:
ssh root@127.0.0.1
on the device to check if local connections work.

if local connections work but you still can't connect from your laptop/pc, then we'll have to install sysklogd and enable logging for ssh.
Thank you for your fast response!

I used "netstat -a | grep ssh" because -pan / -p didn't work. It display the following informations:

tcp 0 0 0.0.0.0:ssh 0.0.0.0:* LISTEN

netstat: no kernel support for AF INET6 (tcp)
netstat: no kernel support for AF INET6 (udp)
netstat: no kernel support for AF INET6 (raw)

Connecting locally to the SSH server from the N900 itself worked fine.