Results 1 to 5 of 5
Ok, so here's my setup. I have two computers, a desktop running FC3 (192.168.0.100), and a laptop running ubuntu (192.168.0.101)
I've been trying to use ssh to see if I ...
- 08-28-2005 #1Linux Newbie
- Join Date
- Jul 2005
- Location
- Illinois, USA
- Posts
- 111
ssh port 22 problem[SOLVED]
Ok, so here's my setup. I have two computers, a desktop running FC3 (192.168.0.100), and a laptop running ubuntu (192.168.0.101)
I've been trying to use ssh to see if I can access the computers, and so far I am able to use the laptop to access the desktop, but not the other way around. Here's the error message I get:
So is there a way to open the port or another way to get this to work?Code:$ ssh -l myname 192.168.0.101 ssh: connect to host 192.168.0.101 port 22: Connection refused
thanks
- 08-28-2005 #2
So you have sshd running on both machines?
Join the Open Source Revolution. Support GNU/Linux.
Find me at: www.deeksworld.com
Registered GNU/Linux User #395777
- 08-28-2005 #3Linux Newbie
- Join Date
- Jul 2005
- Location
- Illinois, USA
- Posts
- 111
sshd was running on the desktop, but only something called ssh-agent was on the laptop.
Code:$ ps ax | grep ssh | grep -v grep 5018 ? Ss 0:00 /usr/bin/ssh-agent x-session-manager
- 08-28-2005 #4So start sshd. That should solve your problems.
Originally Posted by hamburger123
"Time is an illusion. Lunchtime, doubly so."
~Douglas Adams, The Hitchhiker's Guide to the Galaxy
- 08-28-2005 #5Linux Newbie
- Join Date
- Jul 2005
- Location
- Illinois, USA
- Posts
- 111
Wow, that was simple, I had the ssh-client package installed, but not the ssh-server package installed. I used apt to retrieve it and now it works. Thank you very much.
...now I feel stupid...


Reply With Quote
