ssh problem using paramiko?
sa6113
s.payandeh at gmail.com
Tue Oct 7 08:40:46 EDT 2008
I use this code :
import paramiko
import socket
hostname = "192.168.1.4"
username = "test"
port = 22
password = ''123456"
# now connect
try:
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.connect((hostname, port))
except Exception, e:
print 'Connect failed: ' + str(e)
traceback.print_exc()
sys.exit(1)
------------------
and I got this error :
sock.connect((hostname, port))
File "<string>", line 1 , in connect
error:(10061 ,'Connection refused')
-------------------
what is the problem?
I have a computer with this Ip and username , password in my network.
Do I have to install ssh or somthing else in that computer(server) or run
any script?
--
View this message in context: http://www.nabble.com/ssh-problem-using-paramiko--tp19857268p19857268.html
Sent from the Python - python-list mailing list archive at Nabble.com.
More information about the Python-list
mailing list