Re: Execute Commands on Remote Computers over Network

2006-07-13 Thread dylpkls91
Ben Sizer wrote: > Paramiko appears to use SSH, which (as far as I know) > connects to a computer running an sshd program or equivalent and > executes commands via that program. If there's no sshd running on the > target, you can't do anything. Thanks for the clarification. Can I get 'sshd' or an

Re: Execute Commands on Remote Computers over Network

2006-07-13 Thread Ben Sizer
dylpkls91 wrote: > I have been researching this topic and come up with some code to make > it work. It uses SSL and requires the 3rd party package Paramiko (which > requires PyCrypto). However, at this moment I have no network to test > the code on! Trying to connect to localhost (127.0.0.1) fails.

Re: Execute Commands on Remote Computers over Network

2006-07-12 Thread dylpkls91
I'm sorry, I should have clarified. I want to execute commands on networked computers running Windows XP. Thank you for you concern anyway. Does this mean that the Paramiko module only works on Unix systems? -- http://mail.python.org/mailman/listinfo/python-list

Re: Execute Commands on Remote Computers over Network

2006-06-29 Thread Steve Holden
Lawrence D'Oliveiro wrote: > In article <[EMAIL PROTECTED]>, > "dylpkls91" <[EMAIL PROTECTED]> wrote: > > >>Lawrence D'Oliveiro wrote: >> >>>In article <[EMAIL PROTECTED]>, >>> "dylpkls91" <[EMAIL PROTECTED]> wrote: >>> >>> I have been researching this topic and come up with some code to mak

Re: Execute Commands on Remote Computers over Network

2006-06-29 Thread Lawrence D'Oliveiro
In article <[EMAIL PROTECTED]>, "dylpkls91" <[EMAIL PROTECTED]> wrote: >Lawrence D'Oliveiro wrote: >> In article <[EMAIL PROTECTED]>, >> "dylpkls91" <[EMAIL PROTECTED]> wrote: >> >> >I have been researching this topic and come up with some code to make >> >it work. It uses SSL and requires the 3

Re: Execute Commands on Remote Computers over Network

2006-06-27 Thread dylpkls91
Lawrence D'Oliveiro wrote: > In article <[EMAIL PROTECTED]>, > "dylpkls91" <[EMAIL PROTECTED]> wrote: > > >I have been researching this topic and come up with some code to make > >it work. It uses SSL and requires the 3rd party package Paramiko (which > >requires PyCrypto). > > Why not just spawn

Re: Execute Commands on Remote Computers over Network

2006-06-26 Thread Lawrence D'Oliveiro
In article <[EMAIL PROTECTED]>, "dylpkls91" <[EMAIL PROTECTED]> wrote: >I have been researching this topic and come up with some code to make >it work. It uses SSL and requires the 3rd party package Paramiko (which >requires PyCrypto). Why not just spawn an invocation of SSH? -- http://mail.pyt