Hi ns_chrys,
so your goal is connect from your ubuntu desktop (UD) to you Win7 laptop (W7), isn't it?
Let's say they are on the same network with IP_UD and IP_W7.
- Step 1 - Check if SSH server is running
First of all, check if BlueZone is up&running onto your W7 with a simple netstat:
from your command prompt (open a terminal) lauch the command
Code:
netstat -ano | find "22"
If the server is running you should get a response like this:
Code:
TCP 0.0.0.0:22 0.0.0.0:0 LISTENING
- Step 2 - Get your W7 ip address
from your command prompt (open a terminal) lauch the command
look for the IPv4 detail
Code:
IPv4 Address. . . . . . . . . . . . : xxx.xxx.xxx.xxx
that's your IP (IP_W7)
- Step 3 - Try connecting
From you UB terminal, simply try
You should get the server public key, response YES to the question and go on with authentication.
Now, let us know if you get problem on Step 1,2 or 3 to get out a better response to your issue.