Results 1 to 3 of 3

Thread: rsync over ssh over proxy

  1. #1
    Join Date
    Oct 2005
    Beans
    54

    rsync over ssh over proxy

    Hey,

    My computer currently has access to the internet only through a proxy, thus I'm forwarding my ssh connection to port 8080 through corkscrew.

    I need to run rsync over this ssh connection - does anyone know how to make it work? Just typing "rsync username@destination-ssh-server:folder-name" doesn't work since this doesn't forward the ssh traffic to port 8080.

    I'm using Ubuntu 10

    Thanks

  2. #2
    Join Date
    Nov 2005
    Location
    Netherlands
    Beans
    88
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: rsync over ssh over proxy

    Try this:

    rsync -v -e ssh username@remote-system:/sync_dir /path/to/local/sync_dir
    Pwn the day

  3. #3
    Join Date
    Oct 2005
    Beans
    54

    Re: rsync over ssh over proxy

    Quote Originally Posted by Jeroensum View Post
    Try this:

    rsync -v -e ssh username@remote-system:/sync_dir /path/to/local/sync_dir
    That works thanks!

    PS - to those who are using corkscrew - I had to replace username@remote-system with a custom Host I had configured in my .ssh/config file which used corkscrew.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •