tor-doc-win32.html 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <html>
  2. <head>
  3. <title>Tor: an anonymizing overlay network for TCP</title>
  4. <meta name="Author" content="Roger Dingledine">
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta http-equiv="Content-Style-Type" content="text/css">
  7. <link rel="stylesheet" type="text/css" href="tor-doc.css">
  8. </head>
  9. <body>
  10. <h1><a href="http://tor.freehaven.net/">Tor</a> for Win32</h1>
  11. <a name="installing"></a>
  12. <h2>Installing Tor</h2>
  13. <p>You can get the latest releases <a
  14. href="http://tor.freehaven.net/dist/">here</a>. Look for the highest
  15. version (most recent date) that includes "-win32.exe".
  16. </p>
  17. <p>Our Tor installer should make everything pretty simple:
  18. </p>
  19. [screenshot for Tor installer that looks comforting]
  20. <p>It will run Tor in a dos window so you can see its logs and
  21. errors. (You can minimize this window, but do not close it.)
  22. </p>
  23. <img alt="tor window screenshot" src="http://tor.freehaven.net/img/GCS_003.jpg" />
  24. <p>Tor comes configured as a client by default. It uses a built-in
  25. default configuration file, and most people won't need to change any of
  26. the settings. Tor is now installed.</p>
  27. <p>After installing Tor, you should install <a
  28. href="http://www.privoxy.org/">Privoxy</a> (click on 'recent releases',
  29. then scroll down to the Win32 installer packages). Privoxy is a filtering
  30. web proxy that integrates well with Tor. It will appear in your system
  31. tray:
  32. </p>
  33. <img alt="privoxy icon in the system tray" src="http://tor.freehaven.net/img/GCS_004.jpg" />
  34. <p>You need to configure Privoxy to use Tor. Open Privoxy's main config file:</p>
  35. <img alt="editing privoxy config" src="http://tor.freehaven.net/img/GCS_053.jpg" />
  36. <p>Add the line <br>
  37. <tt>forward-socks4a / localhost:9050 .</tt><br>
  38. (don't forget the dot) to privoxy's config file (you can just add it to the
  39. top):</p>
  40. <img alt="privoxy points to tor" src="http://tor.freehaven.net/img/GCS_006.jpg" />
  41. <p>Then change your browser to http proxy at localhost port 8118.
  42. In Mozilla, this is in Edit|Preferences|Advanced|Proxies. In IE, it's
  43. Tools|Internet Options|Connections|LAN Settings|Advanced.
  44. You should also set your SSL proxy (IE calls it "Secure") to the same
  45. thing, to hide your SSL traffic:</p>
  46. <img alt="privoxy points to tor" src="http://tor.freehaven.net/img/GCS_001.jpg" />
  47. <img alt="privoxy points to tor" src="http://tor.freehaven.net/img/GCS_002.jpg" />
  48. <p>Using privoxy is <b>necessary</b> because <a
  49. href="http://tor.freehaven.net/cvs/tor/doc/CLIENTS">browsers leak your
  50. DNS requests when they use a socks proxy directly</a>, which is bad for
  51. your anonymity. Privoxy also removes certain dangerous headers from your
  52. web requests, and also blocks obnoxious ad sites like Doubleclick.</p>
  53. <p>To test if it's working, go to <a
  54. href="http://peertech.org/privacy-knoppix/">this site</a> and see
  55. what IP it says you're coming from. (If it's down, you can try the
  56. <a href="http://www.junkbusters.com/cgi-bin/privacy">junkbusters</a>
  57. site instead.)</p>
  58. <p>
  59. If you have a personal firewall, be sure to allow local connections to
  60. port 8118 and port 9050. If your firewall blocks outgoing connections,
  61. punch a hole so it can connect to TCP ports 80, 443, and 9001-9033.
  62. For more troubleshooting suggestions, see <a
  63. href="http://wiki.noreply.org/wiki/TheOnionRouter/TorFAQ">the FAQ</a>.
  64. </p>
  65. <p>To Torify an application that supports http, just point it at
  66. Privoxy. To use socks directly, point it at localhost port 9050. For
  67. applications that support neither socks nor http, take a look at either <a
  68. href="http://www.socks.permeo.com/Download/SocksCapDownload/index.asp">SocksCap</a>
  69. or the <a
  70. href="http://www.hummingbird.com/products/nc/socks/index.html?cks=y">Hummingbird</a>
  71. SOCKS client. Let us know if you get them working so we can add better
  72. instructions here.</p>
  73. <a name="hidden-service"></a>
  74. <h2>Configuring a hidden service</h2>
  75. <p>Tor allows clients and servers to offer <em>hidden services</em>. That
  76. is, you can offer an apache, sshd, etc, without revealing your IP to its
  77. users. This works via Tor's rendezvous point design: both sides build
  78. a Tor circuit out, and they meet in the middle.</p>
  79. <p>Once you've installed Tor and Privoxy, you can <a
  80. href="http://6sxoyfb3h2nvok2d.onion/">go to the hidden wiki</a> to see
  81. hidden services in action.</p>
  82. <p>To set up a hidden service, edit your torrc:</p>
  83. [screenshot here of clicking on tor|torrc]
  84. <p>Edit the middle part to enable your service. Then restart Tor. It will
  85. create each HiddenServiceDir you have configured, and it will create a
  86. 'hostname' file which specifies the url (xyz.onion) for that service. You
  87. can tell people the url, and they can connect to it via their Tor client,
  88. assuming they're also using Tor and Privoxy.</p>
  89. </body>
  90. </html>