Hi I'd like to establish a drb connection over ssh, preferably over the stdin/stdout channels which are provided by ssh itself. Is there a drb protocol which uses pipes? If not, is it easy to implement? I've seen that the tcpprotocol uses two connections, this could be problem, as pipes/stdin/stdout only provide one stream. At the end of the day I'd like to do something like that: # ruby client.rb | ssh host 'ruby agent.rb' Unfortunately using drb's tcp protocol directly isn't really an option in our environment. Does anybody have a good idea? Thanks! Cheers, Reto Schtel