[Twisted-Python] PB over SSH
Is there currently any way to us PB over a SSH connection? I noticed that there was a post on this list back in Feb 2004, but I didn't see anyone mention it after that. If anyone has any sample code that does this I would greatly appreciate it. -Aron
On Wed, 20 Sep 2006 22:13:38 -0500, Aron Bierbaum <aronbierbaum@gmail.com> wrote:
Is there currently any way to us PB over a SSH connection? I noticed that there was a post on this list back in Feb 2004, but I didn't see anyone mention it after that. If anyone has any sample code that does this I would greatly appreciate it.
PB requires a particular API from its transport, like many protocols. It is entirely possible to implement this API in terms of SSH, and probably not even particularly difficult. However, no one has done this yet (and contributed the result to Twisted), so if you will need to if you want to run PB over SSH. Running PB over SSL is significantly easier and may provide all of the features you are looking for. Jean-Paul
When I have needed this I have just used SSH tunneling. It works like a charm. Brian On 9/21/06, Jean-Paul Calderone <exarkun@divmod.com> wrote:
On Wed, 20 Sep 2006 22:13:38 -0500, Aron Bierbaum <aronbierbaum@gmail.com> wrote:
Is there currently any way to us PB over a SSH connection? I noticed that there was a post on this list back in Feb 2004, but I didn't see anyone mention it after that. If anyone has any sample code that does this I would greatly appreciate it.
PB requires a particular API from its transport, like many protocols. It is entirely possible to implement this API in terms of SSH, and probably not even particularly difficult. However, no one has done this yet (and contributed the result to Twisted), so if you will need to if you want to run PB over SSH.
Running PB over SSL is significantly easier and may provide all of the features you are looking for.
Jean-Paul
_______________________________________________ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python
participants (3)
-
Aron Bierbaum -
Brian Granger -
Jean-Paul Calderone