Skip to content

Instantly share code, notes, and snippets.

Created December 25, 2012 00:38
Show Gist options
  • Save anonymous/4371174 to your computer and use it in GitHub Desktop.
Save anonymous/4371174 to your computer and use it in GitHub Desktop.
Tutorial on using SSH tunnel to set-up secured connection (utorrent) in Windows XP under VMWare fusion (*MacOS* host).
## 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 username@nyc.tunnelr.com```
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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment