You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(1) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
(6) |
Aug
|
Sep
(1) |
Oct
(1) |
Nov
(2) |
Dec
|
2003 |
Jan
(8) |
Feb
|
Mar
|
Apr
(1) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(1) |
Sep
(4) |
Oct
(3) |
Nov
|
Dec
(5) |
2005 |
Jan
(7) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
(7) |
Aug
(2) |
Sep
|
Oct
(6) |
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
From: Chuck E. <Chu...@ya...> - 2001-09-02 17:49:10
|
Hi, I'm the pyssh founder/admin/etc. I'm in the middle of moving across the USA so my Internet access and free time is very spotty for the next week. I just read the messages you sent: * I agree with Peter's notes about the password warning. If you wanna submit a doc patch, I can apply it. Otherwise, I'll make the change myself probably sometime next week. * I have experienced Ignasi's problems on sporadic occasions. I don't have a solution yet, but hope we can figure something out! -Chuck |
From: <as...@ly...> - 2001-09-01 14:53:48
|
The documentation includes an example for running pyssh from the command line: "The pyssh.py module can be run as a program with command line arguments to run ssh. This is useful for testing: > python pyssh.py host=HOST user=USER command=date password=PASSWORD" Maybe you should adding a warning about that the password will be visible to all users on the system via "ps" etc. A more safe approach is to use a temporary file. I've used this method (hopefully safe) with sshcmd (http://www.lysator.liu.se/~astrand/projects/sshcmd/). -- /Peter Åstrand <as...@ly...> |
From: Ignasi Palou-R. <pa...@mi...> - 2001-08-31 15:01:39
|
I'm trying to execute some remote commands through ssh. I saw some of the sample code in comp.lang.python and then this package. I'm not having any success. I can get a remote connection, whether passing a password or using RSA keys. The problem is that I can't get it to execute the remote command. Here is what happens: localhost% python2 pyssh.py host=remote_host command=date debug=1 >> child took 5 command bytes >> child response is 'date\r\n' results = 'date\r\n' But this should work, because calling ssh directly does: localhost% ssh remote_host date Fri Aug 31 10:54:25 EDT 2001 I have set RSAA authentication between localhost and remote_host as you can see. Basically, the remote host is not getting what I send as a command, and I just get the echo back. This is exaclty the same problem I have if I try to code it up myself. I get this same result both at work (RedHat Linux 7.1, Python 2.1.1) and home (Debian Woody, Python 2.0.1) -- Ignasi. |
From: Chuck E. <Chu...@ya...> - 2001-08-23 20:56:21
|
test |