mention that win32 servers can bind to ports 80 and 443 directly
[tor.git] / doc / tor-doc.html
blob6395bd39ae5d1e45cf218618be791c929b795977
1 <html>
2 <head>
3 <title>Tor Documentation</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>
10 <body>
12 <h1><a href="http://tor.eff.org/">Tor</a> documentation</h1>
14 <p>Tor provides a distributed network of servers ("onion routers"). Users
15 bounce their communications (web requests, IM, IRC, SSH, etc.) around
16 the routers. This makes it hard for recipients, observers, and even the
17 onion routers themselves to track the source of the stream.</p>
19 <a name="why"></a>
20 <h2>Why should I use Tor?</h2>
22 <p>Individuals need Tor for privacy:
23 <ul>
24 <li>Privacy in web browsing -- both from the remote website (so it can't
25 track and sell your behavior), and similarly from your local ISP.
26 <li>Safety in web browsing: if your local government doesn't approve
27 of its citizens visiting certain websites, they may monitor the sites
28 and put readers on a list of suspicious persons.
29 <li>Circumvention of local censorship: connect to resources (news
30 sites, instant messaging, etc) that are restricted from your
31 ISP/school/company/government.
32 <li>Socially sensitive communication: chat rooms and web forums for
33 rape and abuse survivors, or people with illnesses.
34 </ul>
36 <p>Journalists and NGOs need Tor for safety:
37 <ul>
38 <li>Allowing dissidents and whistleblowers to communicate more safely.
39 <li>Censorship-resistant publication, such as making available your
40 home-made movie anonymously via a Tor <a href="#hidden-service">hidden
41 service</a>; and reading, e.g. of news sites not permitted in some
42 countries.
43 <li>Allowing your workers to check back with your home website while
44 they're in a foreign country, without notifying everybody nearby that
45 they're working with your organization.
46 </ul>
48 <p>Companies need Tor for business security:
49 <ul>
50 <li>Competitive analysis: browse the competition's website safely.
51 <li>Protecting collaborations of sensitive business units or partners.
52 <li>Protecting procurement suppliers or patterns.
53 <li>Putting the "P" back in "VPN": traditional VPNs reveal the exact
54 amount and frequency of communication. Which locations have employees
55 working late? Which locations have employees consulting job-hunting
56 websites? Which research groups are communicating with your company's
57 patent lawyers?
58 </ul>
60 <p>Governments need Tor for traffic-analysis-resistant communication:
61 <ul>
62 <li>Open source intelligence gathering (hiding individual analysts is
63 not enough -- the organization itself may be sensitive).
64 <li>Defense in depth on open <em>and classified</em> networks -- networks
65 with a million users (even if they're all cleared) can't be made safe just
66 by hardening them to external threat.
67 <li>Dynamic and semi-trusted international coalitions: the network can
68 be shared without revealing the existence or amount of communication
69 between all parties.
70 <li>Networks partially under known hostile control: to block
71 communications, the enemy must take down the whole network.
72 <li>Politically sensitive negotiations.
73 <li>Road warriors.
74 <li>Protecting procurement patterns.
75 <li>Anonymous tips.
76 </ul>
78 <p>Law enforcement needs Tor for safety:
79 <ul>
80 <li>Allowing anonymous tips or crime reporting
81 <li>Allowing agents to observe websites without notifying them that
82 they're being observed (or, more broadly, without having it be an
83 official visit from law enforcement).
84 <li>Surveillance and honeypots (sting operations)
85 </ul>
87 <p>Does the idea of sharing the Tor network with
88 all of these groups bother you? It shouldn't -- <a
89 href="http://freehaven.net/doc/fc03/econymics.pdf">you need them for
90 your security</a>.</p>
92 <a name="client-or-server"></a>
93 <h2>Should I run a client or a server?</h2>
95 <p>You can run Tor in either client mode or server mode. By default,
96 everybody is a <i>client</i>. This means you don't relay traffic for
97 anybody but yourself.</p>
99 <p>If your computer doesn't have a routable IP address or you're using
100 a modem, you should stay a client. Otherwise, please consider being
101 a server, to help out the network. (Currently each server uses 20-500
102 gigabytes of traffic per month, depending on its capacity and its rate
103 limiting configuration.)</p>
105 <p>Note that you can be a server without allowing users to make
106 connections from your computer to the outside world. This is called being
107 a middleman server.</p>
109 <p> Benefits of running a server include:
110 <ul>
111 <li>You may get stronger anonymity, since your destination can't know
112 whether connections relayed through your computer originated at your
113 computer or not.
114 <li>You can also get stronger anonymity by configuring your Tor clients
115 to use your Tor server for entry or for exit.
116 <li>You're helping the Tor staff with development and scalability testing.
117 <li>You're helping your fellow Internet users by providing a larger
118 network. Also, having servers in many different pieces of the Internet
119 gives users more robustness against curious telcos and brute force
120 attacks.
121 </ul>
123 <p>Other things to note:
124 <ul>
125 <li>Tor has built-in support for rate limiting; see BandwidthRate
126 and BandwidthBurst config options. Further, if you have
127 lots of capacity but don't want to spend that many bytes per
128 month, check out the Accounting and Hibernation features. See <a
129 href="http://wiki.noreply.org/wiki/TheOnionRouter/TorFAQ">the FAQ</a>
130 for details.</li>
131 <li>It's fine if the server goes offline sometimes. The directories
132 notice this quickly and stop advertising the server. Just try to make
133 sure it's not too often, since connections using the server when it
134 disconnects will break.</li>
135 <li>We can handle servers with dynamic IPs just fine, as long as the
136 server itself knows its IP. If your server is behind a NAT and it doesn't
137 know its public IP (e.g. it has an IP of 192.168.x.y), then we can't use it
138 as a server yet. (If you want to port forward and set your Address
139 config option to use dyndns DNS voodoo to get around this, feel free. If
140 you write a howto, <a href="mailto:tor-volunteer@freehaven.net">even
141 better</a>.)</li>
142 <li>Your server will passively estimate and advertise its recent
143 bandwidth capacity.
144 Clients choose paths weighted by this capacity, so high-bandwidth
145 servers will attract more paths than low-bandwidth ones. That's why
146 having even low-bandwidth servers is useful too.</li>
147 </ul>
148 </p>
150 <p>You can read more about setting up Tor as a
151 server <a href="#server">below</a>.</p>
153 <a name="installing"></a>
154 <h2>Installing Tor</h2>
156 <p>Win32 users can use our Tor installer. See <a
157 href="tor-doc-win32.html">these instructions</a> for help with
158 installing, configuring, and using Tor on Win32.
159 </p>
161 <p>You can get the latest releases <a
162 href="http://tor.eff.org/dist/">here</a>.</p>
164 <p>If you got Tor from a tarball, unpack it: <tt>tar xzf
165 tor-0.0.9.1.tar.gz; cd tor-0.0.9.1</tt>. Run <tt>./configure</tt>, then
166 <tt>make</tt>, and then <tt>make install</tt> (as root if necessary). Then
167 you can launch tor from the command-line by running <tt>tor</tt>.
168 Otherwise, if you got it prepackaged (e.g. in the <a
169 href="http://packages.debian.org/tor">Debian package</a> or <a
170 href="http://packages.gentoo.org/packages/?category=net-misc;name=tor">Gentoo
171 package</a>), these steps are already done for you, and you may
172 even already have Tor started in the background (logging to
173 /var/log/something).</p>
175 <p>In any case, see the <a href="#client">next section</a> for what to
176 <i>do</i> with it now that you've got it running.</p>
178 <a name="client"></a>
179 <h2>Configuring a client</h2>
181 <p>Tor comes configured as a client by default. It uses a built-in
182 default configuration file, and most people won't need to change any of
183 the settings.</p>
185 <p>After installing Tor, you should install <a
186 href="http://www.privoxy.org/">privoxy</a>, which is a filtering web
187 proxy that integrates well with Tor. Add the line <br>
188 <tt>forward-socks4a / localhost:9050 .</tt><br>
189 (don't forget the dot) to privoxy's config file (you can just add it to the
190 top). Then change your browser to http proxy at localhost port 8118.
191 (In Mozilla, this is in Edit|Preferences|Advanced|Proxies.)
192 You should also set your SSL proxy to the same
193 thing, to hide your SSL traffic. Using privoxy is <b>necessary</b> because
194 <a href="http://tor.eff.org/cvs/tor/doc/CLIENTS">Mozilla leaks your
195 DNS requests when it uses a SOCKS proxy directly</a>. Privoxy also gives
196 you good html scrubbing.</p>
198 <p>To test if it's working, go to <a
199 href="http://peertech.org/privacy-knoppix/">this site</a> and see
200 what IP it says you're coming from. (If it's down, you can try the
201 <a href="http://www.junkbusters.com/cgi-bin/privacy">junkbusters</a>
202 site instead.)</p>
205 If you have a personal firewall that limits your computer's ability
206 to connect to itself, be sure to allow connections from your local
207 applications to
208 local port 8118 and port 9050. If your firewall blocks outgoing connections,
209 punch a hole so it can connect to at least TCP ports 80, 443, and 9001-9033.
210 <!--If you're
211 using Safari as your browser, keep in mind that OS X before 10.3 claims
212 to support SOCKS but does not. -->
213 For more troubleshooting suggestions, see <a
214 href="http://wiki.noreply.org/wiki/TheOnionRouter/TorFAQ">the FAQ</a>.
215 </p>
217 <p>To Torify an application that supports http, just point it at Privoxy
218 (that is, localhost port 8118). To use SOCKS directly (for example, for
219 instant messaging, Jabber, IRC, etc), point your application directly at
220 Tor (localhost port 9050). For applications that support neither SOCKS
221 nor http, you should look at
222 using <a href="http://tsocks.sourceforge.net/">tsocks</a>
223 to dynamically replace the system calls in your program to
224 route through Tor. If you want to use SOCKS 4A, consider using <a
225 href="http://www.dest-unreach.org/socat/">socat</a> (specific instructions
226 are on <a href="http://6sxoyfb3h2nvok2d.onion/tor/SocatHelp">this hidden
227 service url</a>).</p>
229 <p>(Windows doesn't have tsocks; see the bottom of the
230 <a href="tor-doc-win32.html">Win32 instructions</a> for alternatives.)
231 </p>
233 <a name="server"></a>
234 <h2>Configuring a server</h2>
236 <p>We're looking for people with reasonably reliable Internet connections,
237 that have at least 20 kilobytes/s each way. If you frequently have a
238 lot of packet loss or really high latency, we can't handle your server
239 yet. Otherwise, please help out!
240 </p>
243 To read more about whether you should be a server, check out <a
244 href="#client-or-server">the section above</a>.
245 </p>
247 <p>To set up a Tor server, do the following steps after installing Tor.
248 (These instructions are Unix-centric; but Tor 0.0.9.2 is running as a
249 server on Windows now as well.)
250 </p>
252 <ul>
253 <li>1. Edit the bottom part of your torrc (if you installed from source,
254 you will need to copy torrc.sample to torrc first. Look for them in
255 /usr/local/etc/tor/ on Unix). Create the DataDirectory if necessary, and make
256 sure it's owned by the user that will be running tor. Fix your system
257 clock so it's not too far off. Make sure name resolution works.
258 <li>2. If you are using a firewall, open a hole in your firewall so
259 incoming connections can reach the ports you configured (i.e. ORPort,
260 plus DirPort if you enabled it). Make sure you allow outgoing connections,
261 to get to other onion routers plus any other addresses or ports your
262 exit policy allows.
263 <li>3. Start your server: if you installed from source you can just
264 run <tt>tor</tt>, whereas packages typically launch Tor from their
265 initscripts or startup scripts. If it logs any warnings, address them. (By
266 default Tor logs to stdout, but some packages log to /var/log/tor/
267 instead. You can edit your torrc to configure log locations.)
268 <li>4. <b>Register your server.</b> Send mail to <a
269 href="mailto:tor-ops@freehaven.net">tor-ops@freehaven.net</a> with the
270 following information:
271 <ul>
272 <li>The fingerprint for your server's key (the contents of the
273 "fingerprint" file in your DataDirectory -- look in /usr/local/var/lib/tor
274 or /var/lib/tor on many platforms)</li>
275 <li>Who you are, so we know whom to contact if a problem arises,
276 and</li>
277 <li>What kind of connectivity the new server will have.</li>
278 </ul>
279 If possible, sign your mail using PGP.
280 </ul>
283 Optionally, we recommend the following steps as well:
284 </p>
286 <ul>
287 <li>(Unix only) 5. Make a separate user to run the server. If you
288 installed the deb or the rpm, this is already done. Otherwise,
289 you can do it by hand. (The Tor server doesn't need to be run as
290 root, so it's good practice to not run it as root. Running as a
291 'tor' user avoids issues with identd and other services that
292 detect user name. If you're the paranoid sort, feel free to <a
293 href="http://wiki.noreply.org/wiki/TheOnionRouter/TorInChroot">put Tor
294 into a chroot jail</a>.)
295 <li>6. Decide what exit policy you want. By default your server allows
296 access to many popular services, but we restrict some (such as port 25)
297 due to abuse potential. You might want an exit policy that is
298 less restrictive or more restrictive; edit your torrc appropriately.
299 If you choose a particularly open exit policy, you might want to make
300 sure your upstream or ISP is ok with that choice.
301 <li>7. If you installed from source, you may find the initscripts in
302 contrib/tor.sh or contrib/torctl useful if you want to set up Tor to
303 start at boot.
304 <li>8. Consider setting your hostname to 'anonymous' or
305 'proxy' or 'tor-proxy' if you can, so when other people see the address
306 in their web logs or whatever, they will more quickly understand what's
307 going on.
308 <li>9. If you're not running anything else on port 80 or port 443,
309 please consider setting up port-forwarding and advertising these
310 low-numbered ports as your Tor server. This will help allow users behind
311 particularly restrictive firewalls to access the Tor network. Win32
312 servers can simply set their ORPort and DirPort directly. Other servers
313 need to rig some sort of port forwarding; see <a
314 href="http://wiki.noreply.org/wiki/TheOnionRouter/TorFAQ#ServerForFirewalledClients">the
315 FAQ</a> for details of how to set this up.
316 </ul>
318 <p>You can click <a href="http://moria.seul.org:9031/">here</a> or <a
319 href="http://62.116.124.106:9030/">here</a> and look at the router-status
320 line to see if your server is part of the network. It will be listed by
321 nickname once we have added your server to the list of known servers;
322 otherwise it is listed only by its fingerprint.</p>
324 <a name="hidden-service"></a>
325 <h2>Configuring a hidden service</h2>
327 <p>Tor allows clients and servers to offer <em>hidden services</em>. That
328 is, you can offer an apache, sshd, etc, without revealing your IP to its
329 users. This works via Tor's rendezvous point design: both sides build
330 a Tor circuit out, and they meet in the middle.</p>
332 <p>If you're using Tor and <a href="http://www.privoxy.org/">Privoxy</a>,
333 you can <a href="http://6sxoyfb3h2nvok2d.onion/">go to the hidden wiki</a>
334 to see hidden services in action.</p>
336 <p>To set up a hidden service, copy torrc.sample to torrc (by default it's
337 in /usr/local/etc/tor/), and edit the middle part. Then run Tor. It will
338 create each HiddenServiceDir you have configured, and it will create a
339 'hostname' file which specifies the url (xyz.onion) for that service. You
340 can tell people the url, and they can connect to it via their Tor client,
341 assuming they're using a proxy (such as Privoxy) that speaks SOCKS 4A.</p>
343 <a name="own-network"></a>
344 <h2>Setting up your own network</h2>
347 If you want to experiment locally with your own network, or you're cut
348 off from the Internet and want to be able to mess with Tor still, then
349 you may want to set up your own separate Tor network.
352 To set up your own Tor network, you need to run your own directory
353 servers, and you need to configure each client and server so it knows
354 about your directory servers rather than the default ones.
356 <ul>
357 <li>1: Grab the latest release. Use at least 0.0.9.
358 <li>2: For each directory server you want,
359 <ul>
360 <li>2a: Set it up as a server (see <a href="#server">"setting up a
361 server"</a> above), with a least ORPort, DirPort, DataDirectory, and Nickname
362 defined. Set "AuthoritativeDirectory 1".
363 <li>2b: Set "RecommendedVersions" to a comma-separated list of acceptable
364 versions of the code for clients and servers to be running.
365 <li>2c: Run it: <tt>tor --list-fingerprint</tt> if your torrc is in
366 the default place, or <tt>tor -f torrc --list-fingerprint</tt> to
367 specify one. This will generate your keys and output a fingerprint
368 line.
369 </ul>
370 <li>3: Now you need to teach clients and servers to use the new
371 dirservers. For each fingerprint, add a line like<br>
372 <tt>DirServer 18.244.0.114:80 719B E45D E224 B607 C537 07D0 E214 3E2D 423E 74CF</tt><br>
373 to the torrc of each client and server who will be using your network.
374 <li>4: Create a file called approved-routers in the DataDirectory
375 of each directory server. Collect the 'fingerprint' lines from
376 each server (including directory servers), and include them (one per
377 line) in each approved-routers file. You can hup the tor process for
378 each directory server to reload the approved-routers file (so you don't
379 have to restart the process).
380 </ul>
382 <!--<h2>Other doc resources</h2>
384 <ul>
385 <li>Design paper
386 <li>Spec and rend-spec
387 <li>others
388 </ul> -->
390 </body>
391 </html>