Re: ssh problem using paramiko?

2008-10-09 Thread Diez B. Roggisch
Steve Holden wrote: Diez B. Roggisch wrote: sa6113 wrote: I couldn't find any good source for download Openssh on the net? Would you please introduce a URL for download that? http://www.vapor.com/amtelnet/ it supports only SSHv1, but I guess that's ok. No, you really don't want to

Re: ssh problem using paramiko?

2008-10-09 Thread Steve Holden
Diez B. Roggisch wrote: Steve Holden wrote: Diez B. Roggisch wrote: sa6113 wrote: I couldn't find any good source for download Openssh on the net? Would you please introduce a URL for download that? http://www.vapor.com/amtelnet/ it supports only SSHv1, but I guess that's ok. No, you

Re: ssh problem using paramiko?

2008-10-08 Thread sa6113
-- View this message in context: http://www.nabble.com/ssh-problem-using-paramiko--tp19857268p19875248.html Sent from the Python - python-list mailing list archive at Nabble.com. -- http://mail.python.org/mailman/listinfo/python-list

Re: ssh problem using paramiko?

2008-10-08 Thread Diez B. Roggisch
sa6113 wrote: I couldn't find any good source for download Openssh on the net? Would you please introduce a URL for download that? http://www.vapor.com/amtelnet/ it supports only SSHv1, but I guess that's ok. Diez -- http://mail.python.org/mailman/listinfo/python-list

Re: ssh problem using paramiko?

2008-10-08 Thread Steve Holden
sa6113 wrote: I couldn't find any good source for download Openssh on the net? Would you please introduce a URL for download that? http://www.openssh.org/ would be my first port of call. regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC

Re: ssh problem using paramiko?

2008-10-08 Thread Steve Holden
Diez B. Roggisch wrote: sa6113 wrote: I couldn't find any good source for download Openssh on the net? Would you please introduce a URL for download that? http://www.vapor.com/amtelnet/ it supports only SSHv1, but I guess that's ok. No, you really don't want to use SSHv1. Amtelnet

ssh problem using paramiko?

2008-10-07 Thread sa6113
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. -- http://mail.python.org/mailman

Re: ssh problem using paramiko?

2008-10-07 Thread Johny
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... Sent from the Python - python-list

Re: ssh problem using paramiko?

2008-10-07 Thread Steve Holden
sa6113 wrote: 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