I would like to transform this unix command into a ruby script

ssh -2 -f -c blowfish -N -C user@ip -D 8080

This is to enable all my web traffic to be encrypted in a ssh tunnel.

I tried with net-ssh library without success.

EDIT:

Here is what I tried :

 Net::SSH.start("my-ssh-server", "login") do|ssh|
   ssh.forward.local(8080, "localhost", 80)
   puts "Connected !"
   ssh.loop(0) { true }
 end

Here is the documentation of Net:SSH http://net-ssh.rubyforge.org/ssh/v1/chapter-6.html#s4 I think, I should use Direct Channels instead of Local-to-Remote. But the method session.forward.direct_channel is not implemented.

Thanks for your answers !

link|improve this question

60% accept rate
Show what you wrote using Net::SSH and maybe we can figure out what was wrong. – the Tin Man Dec 15 '10 at 5:36
I added the example. Thanks for your contribution. – Arkan Dec 15 '10 at 12:25
Anybody knows ? – Arkan Dec 17 '10 at 21:15
feedback

1 Answer

Stupid and simple:

fork("ssh -2 -f -c blowfish -N -C user@ip -D 8080")

Why not that way?

link|improve this answer
Yep I already did that, but I would like to implemente that in Ruby :) – Arkan Dec 14 '10 at 23:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.