Skip to content

Instantly share code, notes, and snippets.

Created December 25, 2012 00:38

Revisions

  1. @invalid-email-address Anonymous created this gist Dec 25, 2012.
    22 changes: 22 additions & 0 deletions ssh-tunnel-windows-xp-vmware-fusion-mac-os-utorrent
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,22 @@
    ## Using SSH tunnel to set-up secured connection (utorrent) in Windows XP under VMWare fusion (*MacOS* host)
    ### Soft/web-ware needed

    1. [tunnelr.com](http://tunnelr.com) account or any other SSH tunnel provider.
    1. VMWare fusion.
    1. Windows XP.
    1. utorrent.

    ### How to
    1. Start tunneling from MacOS Terminal:
    ```ssh -p 22 -N -D 8080 -g [email protected]```
    1. Install and start-up Windows XP in VMWare fusion. Network connection should be set in the way that Mac provides NAT for Windows XP (default)
    1. Run ```cmd``` and type ```ipconfig``` to get **IP Address**, e.g. ```192.168.124.129```, meaning that MacOS address is ```192.168.124.1``` or ```192.168.124.2``` (in this tutorial will go with first one).
    1. In utorrent go Preferences -> Connection:
    - Disable all port mappings.
    - Choose proxy server type: ```Socks5```; Proxy:```192.168.124.1```.
    - Enable all **Proxy Privacy** options.
    1. **Enjoy!**

    ### References
    1. [Having XP VM use my host OSX ssh tunnel to connect to a remote site? [closed]](http://serverfault.com/questions/442106/having-xp-vm-use-my-host-osx-ssh-tunnel-to-connect-to-a-remote-site)
    1. [How Do I Access The Host From VMware Fusion?](http://stackoverflow.com/questions/61449/how-do-i-access-the-host-from-vmware-fusion)