Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Anyone know how to SSH Tunnel like this?

2»

Comments

  • :) yeah I rigged the biggest duct tape solution with sshfs :)

    Hoping not to run into same problem over and over again.

  • TheLinuxBugTheLinuxBug Member
    edited December 2012

    @pubcrawler said: @TheLinuxBug, redir looks totally badass. Somehow it's new to me.

    No problem, glad I could help :)

  • @pubcrawler duct tape ftw :).

    Here's rsync via ssh jumpbox - start a tunnel on tcp 5000 to targetvps via middlevps then rsync across it. assumes you've got key based ssh auth setup (ssh-copy-id)

    ssh -f -N -n -L localhost:5000:targetvps:22 myuser@middlevps rsync -av --partial --progress --rsh="ssh -p5000" /files/to/rsync/ localhost:/dest

    To automagically keep the tunnel up, use autossh.

Sign In or Register to comment.