Re: Getting to an SSH account over a HTTP proxy

2007-01-28 Thread Nanjundi
> problem. I do not want to create my own SSH client and, AFAICT, there > is no SSH client in Twisted. The library also seem to have some > problems with handling HTTP proxies in a transparent > way:http://twistedmatrix.com/trac/ticket/1774 > > -- > mvh Björn There is a ssh implementation in t

Re: Getting to an SSH account over a HTTP proxy

2007-01-25 Thread BJörn Lindqvist
On 1/22/07, Yu-Xi Lim <[EMAIL PROTECTED]> wrote: > He's referring to the HTTP CONNECT method, which can tunnel arbitrary > TCP connections, not just HTTP. The IETF draft for this is titled > "Tunneling TCP based protocols through Web proxy servers". > > AFAIK, there are no Python modules which supp

Re: Getting to an SSH account over a HTTP proxy

2007-01-25 Thread BJörn Lindqvist
On 22 Jan 2007 17:16:35 -0800, Nanjundi <[EMAIL PROTECTED]> wrote: > BJörn Lindqvist wrote: > > I want to use Python to connect to a SSH account over a HTTP proxy to > > automate some operations. I thought paramiko would be able to do that, > > but it can not (it seems). > > > > Is there some other

Re: Getting to an SSH account over a HTTP proxy

2007-01-24 Thread amadain
use pexpect to set the prompt after the login. class Login(General): """Class spawning an ssh expect instance""" def __init__(self, user, host, pwd, cfg_name=None, log=None): if cfg_name: self.testcell = test_config(cfg_name)

Re: Getting to an SSH account over a HTTP proxy

2007-01-23 Thread Anders Arnholm
Jorgen Grahn <[EMAIL PROTECTED]> skriver: > I am pretty sure there is. Or at least TCP-over-HTTP, or IP-over-HTTP. An > acquaintance of mine used it to tonnel home through a corporate firewall. I > think -- I didn't want to know the details. Ypu can tunnel ip over anything. (Even email if you like

Re: Getting to an SSH account over a HTTP proxy

2007-01-23 Thread Willi Richert
Am Dienstag, 23. Januar 2007 02:16 schrieb Nanjundi: > BJörn Lindqvist wrote: > > I want to use Python to connect to a SSH account over a HTTP proxy to > > automate some operations. I thought paramiko would be able to do that, > > but it can not (it seems). > > > > Is there some other Python module

Re: Getting to an SSH account over a HTTP proxy

2007-01-22 Thread Nanjundi
BJörn Lindqvist wrote: > I want to use Python to connect to a SSH account over a HTTP proxy to > automate some operations. I thought paramiko would be able to do that, > but it can not (it seems). > > Is there some other Python module that can do what I want? > > -- > mvh Björn Did you take a loo

Re: Getting to an SSH account over a HTTP proxy

2007-01-22 Thread Jorgen Grahn
On Mon, 22 Jan 2007 14:40:49 +0100, Diez B. Roggisch <[EMAIL PROTECTED]> wrote: > BJörn Lindqvist wrote: > >> I want to use Python to connect to a SSH account over a HTTP proxy to >> automate some operations. I thought paramiko would be able to do that, >> but it can not (it seems). >> >> Is there

Re: Getting to an SSH account over a HTTP proxy

2007-01-22 Thread Yu-Xi Lim
Diez B. Roggisch wrote: > BJörn Lindqvist wrote: > >> I want to use Python to connect to a SSH account over a HTTP proxy to >> automate some operations. I thought paramiko would be able to do that, >> but it can not (it seems). >> >> Is there some other Python module that can do what I want? > >

Re: Getting to an SSH account over a HTTP proxy

2007-01-22 Thread Diez B. Roggisch
BJörn Lindqvist wrote: > I want to use Python to connect to a SSH account over a HTTP proxy to > automate some operations. I thought paramiko would be able to do that, > but it can not (it seems). > > Is there some other Python module that can do what I want? Is there anything that can do what y

Getting to an SSH account over a HTTP proxy

2007-01-22 Thread BJörn Lindqvist
I want to use Python to connect to a SSH account over a HTTP proxy to automate some operations. I thought paramiko would be able to do that, but it can not (it seems). Is there some other Python module that can do what I want? -- mvh Björn -- http://mail.python.org/mailman/listinfo/python-list