Status
Not open for further replies.

lightmaria

Active Member
40
2009
0
0
hi,
I have a VPS , i can only access it via HyperVM, i can't access it via SSH.I am using Bitvise Tunnelier as SSH client.
Here is my error:
Connection failed. Connect() failed: Windows error 10060: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
Anyone can tell me how to make SSH working ?
Thanks
 
6 comments
What OS is the VPS running? Is sshd running? Did you change the default port and if so, did you make sure to specify the correct port? Does it work if you use PuTTY?
 
Can you get to the Internet from inside of the VPS? (if you have console access of some type)

Also is sshd installed/running? Run 'ps aux | grep sshd' and see if it is running.
 
in hypervm you can execute commands, look for that section

copy and paste

/etc/init.d/sshd restart; /etc/init.d/ssh restart; /etc/init.d/openssh restart

(some distrobutions of debian have different commands to start openssh)

if none of those works try cat /etc/ssh/sshd_config |grep Port, if its anything besides 22 than ssh on that port

if it still doesnt work, try

iptables -I INPUT -p tcp --dport 22 -j ACCEPT

if this all still doesnt work, do echo "Port 2224" >> /etc/ssh/sshd_config and repeat all the /etc/init.d/ commands up top
 
Status
Not open for further replies.
Back
Top