touchups. hope i didn't clobber too much of nick's plans.
[tor.git] / doc / tor.1.in
blobd3e690aa0e272a618bd97edc74d1fd29b435f366
1 .TH TOR 1 "January 2006" "TOR"
2 .SH NAME
3 tor \- The second-generation onion router
4 .SH SYNOPSIS
5 .B tor
6 [\fIOPTION value\fR]...
7 .SH DESCRIPTION
8 .I tor
9 is a connection-oriented anonymizing communication
10 service. Users choose a source-routed path through a set of nodes, and
11 negotiate a "virtual circuit" through the network, in which each node
12 knows its predecessor and successor, but no others. Traffic flowing down
13 the circuit is unwrapped by a symmetric key at each node, which reveals
14 the downstream node.
15 .PP
16 Basically \fItor\fR provides a distributed network of servers ("onion
17 routers"). Users bounce their TCP streams -- web traffic, ftp, ssh, etc --
18 around the routers, and recipients, observers, and even the routers
19 themselves have difficulty tracking the source of the stream.
20 .SH OPTIONS
21 \fB-h, -help\fP
22 Display a short help message and exit.
23 .LP
24 .TP
25 \fB-f \fR\fIFILE\fP
26 FILE contains further "option value" pairs. (Default: @CONFDIR@/torrc)
27 .LP
28 .TP
29 Other options can be specified either on the command-line (\fI--option
30 value\fR), or in the configuration file (\fIoption value\fR).
31 Options are case-insensitive.
32 .LP
33 .TP
34 \fBBandwidthRate \fR\fIN\fR \fBbytes\fR|\fBKB\fR|\fBMB\fR|\fBGB\fR|\fBTB\fP
35 A token bucket limits the average incoming bandwidth on this node to
36 the specified number of bytes per second. (Default: 3 MB)
37 .LP
38 .TP
39 \fBBandwidthBurst \fR\fIN\fR \fBbytes\fR|\fBKB\fR|\fBMB\fR|\fBGB\fR|\fBTB\fP
40 Limit the maximum token bucket size (also known as the burst) to the
41 given number of bytes. (Default: 6 MB)
42 .LP
43 .TP
44 \fBMaxAdvertisedBandwidth \fR\fIN\fR \fBbytes\fR|\fBKB\fR|\fBMB\fR|\fBGB\fR|\fBTB\fP
45 If set, we will not advertise more than this amount of bandwidth for our
46 BandwidthRate. Server operators who want to reduce the number of clients
47 who ask to build circuits through them (since this is proportional to
48 advertised bandwidth rate) can thus reduce the CPU demands on their
49 server without impacting network performance.
50 .LP
51 .TP
52 \fBConnLimit \fR\fINUM\fP
53 The minimum number of file descriptors that must be available to
54 the Tor process before it will start. Tor will ask the OS for as
55 many file descriptors as the OS will allow (you can find this
56 by "ulimit -H -n"). If this number is less than ConnLimit, then
57 Tor will refuse to start.
59 You probably don't need to adjust this. It has no effect on
60 Windows since that platform lacks getrlimit(). (Default: 1000)
61 .LP
62 .TP
63 \fBControlPort \fR\fIPort\fP
64 If set, Tor will accept connections on
65 this port, and allow those connections to control the Tor process using the
66 Tor Control Protocol (described in control-spec.txt).  Note: unless you also
67 specify one of \fBHashedControlPassword\fP or \fBCookieAuthentication\fP,
68 setting this option will cause Tor to allow any process on the local host to
69 control it.
70 .LP
71 .TP
72 \fBControlListenAddress \fR\fIIP\fR[:\fIPORT\fR]\fP
73 Bind the controller listener to this address. If you specify a port,
74 bind to this port rather than the one specified in ControlPort. We
75 strongly recommend that you leave this alone unless you know what you're
76 doing, since giving attackers access to your control listener is really
77 dangerous. (Default: 127.0.0.1)
78 This directive can be specified multiple times to bind to multiple
79 addresses/ports.
80 .LP
81 .TP
82 \fBHashedControlPassword \fR\fIhashed_password\fP
83 Don't allow any connections on the control port except when the other process
84 knows the password whose one-way hash is \fIhashed_password\fP.  You can
85 compute the hash of a password by running "tor --hash-password
86 \fIpassword\fP".
87 .LP
88 .TP
89 \fBCookieAuthentication \fR\fB0\fR|\fB1\fP
90 If this option is set to 1, don't allow any connections on the control port
91 except when the connecting process knows the contents of a file named
92 "control_auth_cookie", which Tor will create in its data directory.  This
93 authentication methods should only be used on systems with good filesystem
94 security. (Default: 0)
95 .LP
96 .TP
97 \fBDataDirectory \fR\fIDIR\fP
98 Store working data in DIR (Default: @LOCALSTATEDIR@/lib/tor)
99 .LP
101 \fBDirServer \fR[\fInickname\fR] [\fBflags\fR] \fIaddress\fR\fB:\fIport fingerprint\fP
102 Use a nonstandard authoritative directory server at the provided
103 address and port, with the specified key fingerprint.  This option can
104 be repeated many times, for multiple authoritative directory
105 servers.  Flags are separated by spaces, and determine what kind of an
106 authority this directory is.  By default, every authority is authoritative
107 for current ("v2")-style directories, unless the "no-v2" flag is given.  If the "v1" flags is provided, Tor will use this server as an
108 authority for old-style (v1) directories as well.  (Only directory mirrors
109 care about this.)  Tor will use this server as an authority for hidden
110 service information if the "hs" flag is set, or if the "v1" flag is set and
111 the "no-hs" flag is \fBnot\fP set.
112 If no \fBdirserver\fP line is given, Tor will use the default
113 directory servers.  NOTE: this option is intended
114 for setting up a private Tor network with its own directory authorities.  If
115 you use it, you will be distinguishable from other users, because you won't
116 believe the same authorities they do.
119 \fBFetchHidServDescriptors \fR\fB0\fR|\fB1\fR\fP
120 If set to 0, Tor will never fetch any hidden service descriptors from
121 the rendezvous directories. This option is only useful if you're using
122 a Tor controller that handles hidserv fetches for you.
123 (Default: 1)
126 \fBFetchServerDescriptors \fR\fB0\fR|\fB1\fR\fP
127 If set to 0, Tor will never fetch any network status summaries or server
128 descriptors from the directory servers. This option is only useful if
129 you're using a Tor controller that handles directory fetches for you.
130 (Default: 1)
133 \fBFetchUselessDescriptors \fR\fB0\fR|\fB1\fR\fP
134 If set to 1, Tor will fetch every non-obsolete descriptor from the
135 authorities that it hears about. Otherwise, it will avoid fetching
136 useless descriptors, for example for routers that are not running.
137 This option is useful if you're using the contributed "exitlist"
138 script to enumerate Tor nodes that exit to certain addresses.
139 (Default: 0)
142 \fBGroup \fR\fIGID\fP
143 On startup, setgid to this user.
146 \fBHttpProxy\fR \fIhost\fR[:\fIport\fR]\fP
147 Tor will make all its directory requests through this host:port
148 (or host:80 if port is not specified),
149 rather than connecting directly to any directory servers.
152 \fBHttpProxyAuthenticator\fR \fIusername:password\fP
153 If defined, Tor will use this username:password for Basic Http proxy
154 authentication, as in RFC 2617. This is currently the only form of
155 Http proxy authentication that Tor supports; feel free to submit a
156 patch if you want it to support others.
159 \fBHttpsProxy\fR \fIhost\fR[:\fIport\fR]\fP
160 Tor will make all its OR (SSL) connections through this host:port
161 (or host:443 if port is not specified), via HTTP CONNECT rather than
162 connecting directly to servers.  You may want to set \fBFascistFirewall\fR
163 to restrict the set of ports you might try to connect to, if your Https
164 proxy only allows connecting to certain ports.
167 \fBHttpsProxyAuthenticator\fR \fIusername:password\fP
168 If defined, Tor will use this username:password for Basic Https proxy
169 authentication, as in RFC 2617. This is currently the only form of
170 Https proxy authentication that Tor supports; feel free to submit a
171 patch if you want it to support others.
174 \fBKeepalivePeriod \fR\fINUM\fP
175 To keep firewalls from expiring connections, send a padding keepalive
176 cell every NUM seconds on open connections that are in use. If the
177 connection has no open circuits, it will instead be closed after NUM
178 seconds of idleness. (Default: 5 minutes)
181 \fBLog \fR\fIminSeverity\fR[-\fImaxSeverity\fR] \fBstderr\fR|\fBstdout\fR|\fBsyslog\fR\fP
182 Send all messages between \fIminSeverity\fR and \fImaxSeverity\fR to
183 the standard output stream, the standard error stream, or to the system
184 log. (The "syslog" value is only supported on Unix.)  Recognized
185 severity levels are debug, info, notice, warn, and err.  We advise using
186 "notice" in most cases, since anything more verbose may provide sensitive
187 information to an attacker who obtains the logs.  If only one
188 severity level is given, all messages of that level or higher will be
189 sent to the listed destination.
192 \fBLog \fR\fIminSeverity\fR[-\fImaxSeverity\fR] \fBfile\fR \fIFILENAME\fP
193 As above, but send log messages to the listed filename.  The "Log"
194 option may appear more than once in a configuration file.  Messages
195 are sent to all the logs that match their severity level.
198 \fBOutboundBindAddress \fR\fIIP\fP
199 Make all outbound connections originate from the IP address specified.  This
200 is only useful when you have multiple network interfaces, and you want all
201 of Tor's outgoing connections to use a single one.
204 \fBPidFile \fR\fIFILE\fP
205 On startup, write our PID to FILE. On clean shutdown, remove FILE.
208 \fBProtocolWarnings \fR\fB0\fR|\fB1\fR\fP
209 If 1, Tor will log with severity 'warn' various cases of other parties
210 not following the Tor specification. Otherwise, they are logged with
211 severity 'info'. (Default: 0)
214 \fBRunAsDaemon \fR\fB0\fR|\fB1\fR\fP
215 If 1, Tor forks and daemonizes to the background. This option has
216 no effect on Windows; instead you should use the --service command-line
217 option. (Default: 0)
220 \fBSafeLogging \fR\fB0\fR|\fB1\fP
221 If 1, Tor replaces potentially sensitive strings in the logs
222 (e.g. addresses) with the string [scrubbed]. This way logs can still be
223 useful, but they don't leave behind personally identifying information
224 about what sites a user might have visited. (Default: 1)
227 \fBUser \fR\fIUID\fP
228 On startup, setuid to this user.
231 \fBHardwareAccel \fR\fB0\fR|\fB1\fP
232 If non-zero, try to use crypto hardware acceleration when
233 available. This is untested and probably buggy. (Default: 0)
235 .SH CLIENT OPTIONS
237 The following options are useful only for clients (that is, if \fBSocksPort\fP is non-zero):
240 \fBAllowInvalidNodes\fR \fBentry\fR|\fBexit\fR|\fBmiddle\fR|\fBintroduction\fR|\fBrendezvous\fR|...\fP
241 If some Tor servers are obviously not working right, the directory
242 authorities can manually mark them as invalid, meaning that it's not
243 recommended you use them for entry or exit positions in your circuits. You
244 can opt to use them in some circuit positions, though. The default is
245 "middle,rendezvous", and other choices are not advised.
248 \fBCircuitBuildTimeout \fR\fINUM\fP
249 Try for at most NUM seconds when building circuits. If the circuit
250 isn't open in that time, give up on it.
251 (Default: 1 minute.)
254 \fBCircuitIdleTimeout \fR\fINUM\fP
255 If we have keept a clean (never used) circuit around for NUM seconds,
256 then close it. This way when the Tor client is entirely idle, it can
257 expire all of its circuits, and then expire its TLS connections. Also,
258 if we end up making a circuit that is not useful for exiting any of
259 the requests we're receiving, it won't forever take up a slot in the
260 circuit list.
261 (Default: 1 hour.)
264 \fBClientOnly \fR\fB0\fR|\fB1\fR\fP
265 If set to 1, Tor will under no circumstances run as a server. The default
266 is to run as a client unless ORPort is configured.  (Usually,
267 you don't need to set this; Tor is pretty smart at figuring out whether
268 you are reliable and high-bandwidth enough to be a useful server.)
269 (Default: 0)
272 \fBExcludeNodes \fR\fInickname\fR,\fInickname\fR,\fI...\fP
273 A list of nodes to never use when building a circuit.
276 \fBEntryNodes \fR\fInickname\fR,\fInickname\fR,\fI...\fP
277 A list of preferred nodes to use for the first hop in the circuit.
278 These are treated only as preferences unless StrictEntryNodes (see
279 below) is also set.
282 \fBExitNodes \fR\fInickname\fR,\fInickname\fR,\fI...\fP
283 A list of preferred nodes to use for the last hop in the circuit.
284 These are treated only as preferences unless StrictExitNodes (see
285 below) is also set.
288 \fBStrictEntryNodes \fR\fB0\fR|\fB1\fR\fP
289 If 1, Tor will never use any nodes besides those listed in "EntryNodes" for
290 the first hop of a circuit.
293 \fBStrictExitNodes \fR\fB0\fR|\fB1\fR\fP
294 If 1, Tor will never use any nodes besides those listed in "ExitNodes" for
295 the last hop of a circuit.
298 \fBFascistFirewall \fR\fB0\fR|\fB1\fR\fP
299 If 1, Tor will only create outgoing connections to ORs running on ports that
300 your firewall allows (defaults to 80 and 443; see \fBFirewallPorts\fR).  This will
301 allow you to run Tor as a client behind a firewall with restrictive policies,
302 but will not allow you to run as a server behind such a firewall.
303 This option is deprecated; use
304 ReachableAddresses instead.
307 \fBFirewallPorts \fR\fIPORTS\fP
308 A list of ports that your firewall allows you to connect to.  Only
309 used when \fBFascistFirewall\fR is set. This option is deprecated; use
310 ReachableAddresses instead. (Default: 80, 443)
313 \fBReachableAddresses \fR\fIADDR\fP[\fB/\fP\fIMASK\fP][:\fIPORT\fP]...\fP
314 A comma-separated list of IP addresses and ports that your firewall allows you
315 to connect to. The format is as
316 for the addresses in ExitPolicy, except that "accept" is understood
317 unless "reject" is explicitly provided.  For example, 'ReachableAddresses
318 99.0.0.0/8, reject 18.0.0.0/8:80, accept *:80' means that your
319 firewall allows connections to everything inside net 99, rejects port
320 80 connections to net 18, and accepts connections to port 80 otherwise.
321 (Default: 'accept *:*'.)
324 \fBReachableDirAddresses \fR\fIADDR\fP[\fB/\fP\fIMASK\fP][:\fIPORT\fP]...\fP
325 Like \fBReachableAddresses\fP, a list of addresses and ports.  Tor will obey
326 these restrictions when fetching directory information, using standard HTTP
327 GET requests. If not set explicitly then the value of \fBReachableAddresses\fP
328 is used.  If \fBHttpProxy\fR is set then these connections will go through that
329 proxy.
332 \fBReachableORAddresses \fR\fIADDR\fP[\fB/\fP\fIMASK\fP][:\fIPORT\fP]...\fP
333 Like \fBReachableAddresses\fP, a list of addresses and ports.  Tor will obey
334 these restrictions when connecting to Onion Routers, using TLS/SSL.  If not set
335 explicitly then the value of \fBReachableAddresses\fP is used. If
336 \fBHttpsProxy\fR is set then these connections will go through that proxy.
338 The separation between \fBReachableORAddresses\fP and
339 \fBReachableDirAddresses\fP is only interesting when you are connecting through
340 proxies (see \fBHttpProxy\fR and \fBHttpsProxy\fR).  Most proxies limit TLS
341 connections (which Tor uses to connect to Onion Routers) to port 443, and some
342 limit HTTP GET requests (which Tor uses for fetching directory information) to
343 port 80.
346 \fBLongLivedPorts \fR\fIPORTS\fP
347 A list of ports for services that tend to have long-running connections
348 (e.g. chat and interactive shells). Circuits for streams that use these
349 ports will contain only high-uptime nodes, to reduce the chance that a
350 node will go down before the stream is finished.
351 (Default: 21, 22, 706, 1863, 5050, 5190, 5222, 5223, 6667, 6697, 8300)
354 \fBMapAddress\fR \fIaddress\fR \fInewaddress\fR
355 When a request for address arrives to Tor, it will rewrite it to
356 newaddress before processing it. For example, if you always want
357 connections to www.indymedia.org to exit via \fItorserver\fR (where
358 \fItorserver\fR is the nickname of the server),
359 use "MapAddress www.indymedia.org www.indymedia.org.torserver.exit".
362 \fBNewCircuitPeriod \fR\fINUM\fP
363 Every NUM seconds consider whether to build a new circuit. (Default: 30 seconds)
366 \fBMaxCircuitDirtiness \fR\fINUM\fP
367 Feel free to reuse a circuit that was first used at most NUM seconds ago,
368 but never attach a new stream to a circuit that is too old.
369 (Default: 10 minutes)
372 \fBNodeFamily \fR\fInickname\fR,\fInickname\fR,\fI...\fP
373 The named Tor servers constitute a "family" of similar or co-administered
374 servers, so never use any two of them in the same circuit. Defining a
375 NodeFamily is only needed when a server doesn't list the family itself
376 (with MyFamily). This option can be used multiple times.
379 \fBEnforceDistinctSubnets \fR\fB0\fR|\fB1\fR\fP
380 If 1, Tor will not put two servers whose IP addresses are "too
381 close" on the same circuit.  Currently, two addresses are
382 "too close" if they lie in the same /16 range. (Default: 1)
384 .\" \fBPathlenCoinWeight \fR\fI0.0-1.0\fP
385 .\" Paths are 3 hops plus a geometric distribution centered around this coinweight.
386 .\" Must be >=0.0 and <1.0. (Default: 0.3) NOT USED CURRENTLY
387 .\" .TP
390 \fBRendNodes \fR\fInickname\fR,\fInickname\fR,\fI...\fP
391 A list of preferred nodes to use for the rendezvous point, if possible.
394 \fBRendExcludeNodes \fR\fInickname\fR,\fInickname\fR,\fI...\fP
395 A list of nodes to never use when choosing a rendezvous point.
398 \fBSocksPort \fR\fIPORT\fP
399 Advertise this port to listen for connections from Socks-speaking
400 applications.  Set this to 0 if you don't want to allow application
401 connections. (Default: 9050)
404 \fBSocksListenAddress \fR\fIIP\fR[:\fIPORT\fR]\fP
405 Bind to this address to listen for connections from Socks-speaking
406 applications. (Default: 127.0.0.1) You can also specify a port
407 (e.g. 192.168.0.1:9100).
408 This directive can be specified multiple times to bind to multiple
409 addresses/ports.
412 \fBSocksPolicy \fR\fIpolicy\fR,\fIpolicy\fR,\fI...\fP
413 Set an entrance policy for this server, to limit who can connect to the
414 Socks ports.
415 The policies have the same form as exit policies below.
418 \fBSocksTimeout \fR\fINUM\fP
419 Let a socks connection wait NUM seconds unattached before we fail it.
420 (Default: 2 minutes.)
423 \fBTestVia \fR\fInickname\fR,\fInickname\fR,\fI...\fP
424 A list of nodes to prefer for your middle hop when building testing
425 circuits. This option is mainly for debugging reachability problems.
428 \fBTrackHostExits \fR\fIhost\fR,\fI.domain\fR,\fI...\fR\fP
429 For each value in the comma separated list, Tor will track recent connections
430 to hosts that match this value and attempt to
431 reuse the same exit node for each. If the value is prepended with a '.', it is
432 treated as matching an entire domain. If one of the values is just a '.', it
433 means match everything. This option is useful if you frequently connect to
434 sites that will expire all your authentication cookies (ie log you out) if
435 your IP address changes. Note that this option does have the disadvantage of
436 making it more clear that a given history is
437 associated with a single user. However, most people who would wish to observe
438 this will observe it through cookies or other protocol-specific means anyhow.
441 \fBTrackHostExitsExpire \fR\fINUM\fP
442 Since exit servers go up and down, it is desirable to expire the association
443 between host and exit server after NUM seconds. The default
444 is 1800 seconds (30 minutes).
447 \fBUseEntryGuards \fR\fB0\fR|\fB1\fR\fP
448 If this option is set to 1, we pick a few long-term entry servers, and
449 try to stick with them.  This is desirable because
450 constantly changing servers increases the odds that an adversary who owns
451 some servers will observe a fraction of your paths.
452 (Defaults to 1.)
455 \fBNumEntryGuards \fR\fINUM\fP
456 If UseEntryGuards is set to 1, we will try to pick a total of NUM routers
457 as long-term entries for our circuits.
458 (Defaults to 3.)
461 \fBSafeSocks \fR\fB0\fR|\fB1\fR\fP
462 When this option is enabled, Tor will reject application connections that
463 use unsafe variants of the socks protocol -- ones that only provide an
464 IP address, meaning the application is doing a DNS resolve first.
465 Specifically, these are socks4 and socks5 when not doing remote DNS.
466 (Defaults to 0.)
469 \fBTestSocks \fR\fB0\fR|\fB1\fR\fP
470 When this option is enabled, Tor will make a notice-level log entry for
471 each connection to the Socks port indicating whether the request used
472 a safe socks protocol or an unsafe one (see above entry on SafeSocks).
473 This helps to determine whether an application using Tor is possibly
474 leaking DNS requests.
475 (Default: 0)
478 \fBVirtualAddrNetwork \fR\fIAddress\fB/\fIbits\fP
479 When a controller asks for a virtual (unused) address with the
480 'MAPADDRESS' command, Tor picks an unassigned address from this range.
481 (Default: 127.192.0.0/10)
483 .SH SERVER OPTIONS
485 The following options are useful only for servers (that is, if \fBORPort\fP is non-zero):
488 \fBAddress \fR\fIaddress\fP
489 The IP or fqdn of this server (e.g. moria.mit.edu). You can leave this
490 unset, and Tor will guess your IP.
493 \fBAssumeReachable \fR\fB0\fR|\fB1\fR\fP
494 This option is used when bootstrapping a new Tor network. If set to 1,
495 don't do self-reachability testing; just upload your server descriptor
496 immediately. If \fBAuthoritativeDirectory\fP is also set, this option
497 instructs the dirserver to bypass remote reachability testing too and
498 list all connected servers as running.
501 \fBContactInfo \fR\fIemail_address\fP
502 Administrative contact information for server. This line might get
503 picked up by spam harvesters, so you may want to obscure the fact
504 that it's an email address.
507 \fBExitPolicy \fR\fIpolicy\fR,\fIpolicy\fR,\fI...\fP
508 Set an exit policy for this server. Each policy is of the form
509 "\fBaccept\fP|\fBreject\fP \fIADDR\fP[\fB/\fP\fIMASK\fP]\fB[:\fP\fIPORT\fP]".
510 If \fB/\fP\fIMASK\fP is omitted then this policy just applies to the host
511 given.  Instead of giving a host or network you can also use "\fB*\fP" to
512 denote the universe (0.0.0.0/0).  \fIPORT\fP can be a single port number,
513 an interval of ports "\fIFROM_PORT\fP\fB-\fP\fITO_PORT\fP", or "\fB*\fP".
514 If \fIPORT\fP is omitted, that means "\fB*\fP".
516 For example, "accept 18.7.22.69:*,reject 18.0.0.0/8:*,accept *:*" would
517 reject any traffic destined for MIT except for web.mit.edu, and
518 accept anything else.
520 To specify all internal and link-local networks (including 0.0.0.0/8,
521 169.254.0.0/16, 127.0.0.0/8, 192.168.0.0/16, 10.0.0.0/8, and
522 172.16.0.0/12), you can use the "private" alias instead of an address.
523 These addresses are rejected by default (at the beginning of your
524 exit policy) unless you set the ExitPolicyRejectPrivate config option
525 to 0. For example, once you've done that, you could allow HTTP to
526 127.0.0.1 and block all other connections to internal networks with
527 "accept
528 127.0.0.1:80,reject private:*".  See RFC 1918 and RFC 3330 for more
529 details about internal and reserved IP address space.
531 This directive can be specified multiple times so you don't have to put
532 it all on one line.
534 Policies are considered first to last, and the first match wins. If
535 you want to _replace_ the default exit policy, end your exit policy with
536 either a reject *:* or an accept *:*. Otherwise, you're _augmenting_
537 (prepending to) the default exit policy. The default exit policy is:
538 .PD 0
539 .RS 12
540 .IP "reject *:25"
541 .IP "reject *:119"
542 .IP "reject *:135-139"
543 .IP "reject *:445"
544 .IP "reject *:465"
545 .IP "reject *:587"
546 .IP "reject *:1214"
547 .IP "reject *:4661-4666"
548 .IP "reject *:6346-6429"
549 .IP "reject *:6699"
550 .IP "reject *:6881-6999"
551 .IP "accept *:*"
556 \fBExitPolicyRejectPrivate \fR\fB0\fR|\fB1\fR\fP
557 Reject all private (local) networks at the beginning of your exit
558 policy. See above entry on ExitPolicy. (Default: 1)
561 \fBMaxOnionsPending \fR\fINUM\fP
562 If you have more than this number of onionskins queued for decrypt, reject new ones. (Default: 100)
565 \fBMyFamily \fR\fInickname\fR,\fInickname\fR,\fI...\fP
566 Declare that this Tor server is controlled or administered by a group
567 or organization identical or similar to that of the other named servers.
568 When two servers both declare that they are in the same 'family', Tor clients
569 will not use them in the same circuit.  (Each server only needs to list the
570 other servers in its family; it doesn't need to list itself, but it won't hurt.)
573 \fBNickname \fR\fIname\fP
574 Set the server's nickname to 'name'. Nicknames must be between 1
575 and 19 characters inclusive, and must contain only the characters
576 [a-zA-Z0-9].
579 \fBNumCPUs \fR\fInum\fP
580 How many processes to use at once for decrypting onionskins. (Default: 1)
583 \fBORPort \fR\fIPORT\fP
584 Advertise this port to listen for connections from Tor clients and servers.
587 \fBORListenAddress \fR\fIIP\fR[:\fIPORT\fR]\fP
588 Bind to this IP address to listen for connections from Tor clients and
589 servers. If you specify a port, bind to this port rather than the one
590 specified in ORPort. (Default: 0.0.0.0)
591 This directive can be specified multiple times to bind to multiple
592 addresses/ports.
595 \fBPublishServerDescriptor \fR\fB0\fR|\fB1\fR\fP
596 If set to 0, Tor will act as a server if you have an ORPort
597 defined, but it will not publish its descriptor to the dirservers. This
598 option is useful if you're testing out your server, or if you're using
599 a Tor controller that handles directory publishing for you.
600 (Default: 1)
603 \fBRedirectExit \fR\fIpattern target\fP
604 Whenever an outgoing connection tries to connect to one of a given set
605 of addresses, connect to \fItarget\fP (an \fIaddress:port\fP pair) instead.
606 The address
607 pattern is given in the same format as for an exit policy.  The
608 address translation applies after exit policies are applied.  Multiple
609 \fBRedirectExit\fP options can be used: once any one has matched
610 successfully, no subsequent rules are considered.  You can specify that no
611 redirection is to be performed on a given set of addresses by using the
612 special target string "pass", which prevents subsequent rules from being
613 considered.
616 \fBShutdownWaitLength\fR \fINUM\fP
617 When we get a SIGINT and we're a server, we begin shutting down: we close
618 listeners and start refusing new circuits. After \fBNUM\fP seconds,
619 we exit. If we get a second SIGINT, we exit immediately.  (Default:
620 30 seconds)
623 \fBAccountingMax \fR\fIN\fR \fBbytes\fR|\fBKB\fR|\fBMB\fR|\fBGB\fR|\fBTB\fP
624 Never send more than the specified number of bytes in a given
625 accounting period, or receive more than that number in the period.
626 For example, with AccountingMax set to 1 GB, a server could send 900 MB
627 and receive 800 MB and continue running. It will only hibernate once one
628 of the two reaches 1 GB.
629 When the number of bytes is exhausted, Tor will hibernate until some
630 time in the next accounting period.  To prevent all servers from
631 waking at the same time, Tor will also wait until a random point in
632 each period before waking up.  If you have bandwidth cost issues,
633 enabling hibernation is preferable to setting a low bandwidth, since it
634 provides users with a collection of fast servers that are up some of
635 the time, which is more useful than a set of slow servers that are
636 always "available".
639 \fBAccountingStart \fR\fBday\fR|\fBweek\fR|\fBmonth\fR [\fIday\fR] \fIHH:MM\fR\fP
640 Specify how long accounting periods last.  If \fBmonth\fP is given,
641 each accounting period runs from the time \fIHH:MM\fR on the
642 \fIday\fRth day of one month to the same day and time of the next.
643 (The day must be between 1 and 28.)  If \fBweek\fP is given, each
644 accounting period runs from the time \fIHH:MM\fR of the \fIday\fRth
645 day of one week to the same day and time of the next week, with Monday
646 as day 1 and Sunday as day 7.  If \fBday\fR is given, each accounting
647 period runs from the time \fIHH:MM\fR each day to the same time on the
648 next day.  All times are local, and given in 24-hour time.  (Defaults to
649 "month 1 0:00".)
652 \fBServerDNSResolvConfFile \fR\fIfilename\fP
653 Overrides the default DNS configuration with the configuration in
654 \fIfilename\fP.  The file format is the same as the standard Unix
655 "\fBresolv.conf\fP" file (7).  This option only affects name lookup for
656 addresses requested by clients; and only takes effect if Tor was built with
657 eventdns support.  (Defaults to use the system DNS configuration.)
660 \fBServerDNSSearchDomains \fR\fB0\fR|\fB1\fR\fP
661 If set to \fB1\fP, then we will search for addresses in the local search
662 domain.  For example, if this system is configured to believe it is in
663 "example.com", and a client tries to connect to "www", the client will be
664 connected to "www.example.com".
665 This option only affects name lookup for addresses requested by clients.
666 (Defaults to "0".)
669 \fBServerDNSDetectHijacking \fR\fB0\fR|\fB1\fR\fP
670 When this option is set to 1, we will test periodically to determine whether
671 our local nameservers have been configured to hijack failing DNS requests
672 (usually to an advertising site).  If they are, we will attempt to correct
673 this.  This option only affects name lookup for addresses requested by
674 clients; and only takes effect if Tor was built with eventdns support.
675 (Defaults to "1".)
677 .SH DIRECTORY SERVER OPTIONS
679 The following options are useful only for directory servers (that is, if \fBDirPort\fP is non-zero):
682 \fBAuthoritativeDirectory \fR\fB0\fR|\fB1\fR\fP
683 When this option is set to 1, Tor operates as an authoritative
684 directory server.  Instead of caching the directory, it generates its
685 own list of good servers, signs it, and sends that to the clients.
686 Unless the clients already have you listed as a trusted directory, you
687 probably do not want to set this option.  Please coordinate with the other
688 admins at tor-ops@freehaven.net if you think you should be a directory.
691 \fBV1AuthoritativeDirectory \fR\fB0\fR|\fB1\fR\fP
692 When this option is set in addition to \fBAuthoritativeDirectory\fP, Tor also
693 generates a version 1 directory (for Tor clients up to 0.1.0.x).
694 (As of Tor 0.1.1.12 every (v2) authoritative directory still provides most of
695 the v1 directory functionality, even without this option set to 1.
696 This however is expected to change in the future.)
699 \fBVersioningAuthoritativeDirectory \fR\fB0\fR|\fB1\fR\fP
700 When this option is set to 1, Tor adds information on
701 which versions of Tor are still believed safe for use to
702 the published directory.  Each version 1 authority is
703 automatically a versioning authority; version 2 authorities
704 provide this service optionally.  See \fBRecommendedVersions\fP,
705 \fBRecommendedClientVersions\fP, and \fBRecommendedServerVersions\fP.
708 \fBNamingAuthoritativeDirectory \fR\fB0\fR|\fB1\fR\fP
709 When this option is set to 1, then the server advertises that it has
710 opinions about nickname-to-fingerprint bindings.  It will include these
711 opinions in its published network-status pages, by listing servers with
712 the flag "Named" if a correct binding between that nickname and
713 fingerprint has been registered with the dirserver.  Naming dirservers
714 will refuse to accept or publish descriptors that contradict a
715 registered binding.  See \fBapproved-routers\fP in the \fBFILES\fP
716 section below.
719 \fBHSAuthoritativeDir \fR\fB0\fR|\fB1\fR\fP
720 When this option is set in addition to \fBAuthoritativeDirectory\fP, Tor also
721 accepts and serves hidden service descriptors. (Default: 0)
724 \fBDirPort \fR\fIPORT\fP
725 Advertise the directory service on this port.
728 \fBDirListenAddress \fR\fIIP\fR[:\fIPORT\fR]\fP
729 Bind the directory service to this address. If you specify a port, bind
730 to this port rather than the one specified in DirPort. (Default: 0.0.0.0)
731 This directive can be specified multiple times to bind to multiple
732 addresses/ports.
735 \fBDirPolicy \fR\fIpolicy\fR,\fIpolicy\fR,\fI...\fP
736 Set an entrance policy for this server, to limit who can connect to the
737 directory ports.
738 The policies have the same form as exit policies above.
741 \fBRecommendedVersions \fR\fISTRING\fP
742 STRING is a comma-separated list of Tor versions currently believed
743 to be safe. The list is included in each directory, and nodes which
744 pull down the directory learn whether they need to upgrade.  This
745 option can appear multiple times: the values from multiple lines are
746 spliced together.
747 When this is set then
748 \fBVersioningAuthoritativeDirectory\fP should be set too.
751 \fBRecommendedClientVersions \fR\fISTRING\fP
752 STRING is a comma-separated list of Tor versions currently believed
753 to be safe for clients to use.  This information is included in version 2
754 directories.  If this is not set then the value of \fBRecommendedVersions\fR
755 is used.
756 When this is set then
757 \fBVersioningAuthoritativeDirectory\fP should be set too.
760 \fBRecommendedServerVersions \fR\fISTRING\fP
761 STRING is a comma-separated list of Tor versions currently believed
762 to be safe for servers to use.  This information is included in version 2
763 directories.  If this is not set then the value of \fBRecommendedVersions\fR
764 is used.
765 When this is set then
766 \fBVersioningAuthoritativeDirectory\fP should be set too.
769 \fBDirAllowPrivateAddresses \fR\fB0\fR|\fB1\fR\fP
770 If set to 1, Tor will accept router descriptors with arbitrary "Address"
771 elements. Otherwise, if the address is not an IP or is a private IP,
772 it will reject the router descriptor. Defaults to 0.
775 \fBAuthDirBadExit \fR\fIAddressPattern\fR...\fP
776 Authoritative directories only.  A set of address patterns for servers that
777 will be listed as bad exits in any network status document this authority
778 publishes, if \fBAuthDirListBadExits\fR is set.
781 \fBAuthDirInvalid \fR\fIAddressPattern\fR...\fP
782 Authoritative directories only. A set of address patterns for servers that
783 will never be listed as "valid" in any network status document that this
784 authority publishes.
787 \fBAuthDirReject \fR\fIAddressPattern\fR...\fP
788 Authoritative directories only.  A set of address patterns for servers that
789 will never be listed at all in any network status document that this
790 authority publishes, or accepted as an OR address in any descriptor submitted
791 for publication by this authority.
794 \fBAuthDirListBadExits \fR\fB0\fR|\fB1\fR\fP
795 Authoritative directories only.  If set to 1, this directory has
796 some opinion about which nodes are unsuitable as exit nodes.  (Do not
797 set this to 1 unless you plan to list nonfunctioning exits as bad;
798 otherwise, you are effectively voting in favor of every declared exit
799 as an exit.)
802 \fBAuthDirRejectUnlisted \fR\fB0\fR|\fB1\fR\fP
803 Authoritative directories only.  If set to 1, the directory server
804 rejects all uploaded server descriptors that aren't explicitly listed
805 in the fingerprints file. This acts as a "panic button" if we get
806 Sybiled. (Default: 0)
808 .SH HIDDEN SERVICE OPTIONS
810 The following options are used to configure a hidden service.
813 \fBHiddenServiceDir \fR\fIDIRECTORY\fP
814 Store data files for a hidden service in DIRECTORY.  Every hidden
815 service must have a separate directory.  You may use this option multiple
816 times to specify multiple services.
819 \fBHiddenServicePort \fR\fIVIRTPORT \fR[\fITARGET\fR]\fP
820 Configure a virtual port VIRTPORT for a hidden service.  You may use this
821 option multiple times; each time applies to the service using the most recent
822 hiddenservicedir.  By default, this option maps the virtual port to the
823 same port on 127.0.0.1.  You may override the target port, address, or both
824 by specifying a target of addr, port, or addr:port.
827 \fBHiddenServiceNodes \fR\fInickname\fR,\fInickname\fR,\fI...\fP
828 If possible, use the specified nodes as introduction points for the hidden
829 service. If this is left unset, Tor will be smart and pick some reasonable
830 ones; most people can leave this unset.
833 \fBHiddenServiceExcludeNodes \fR\fInickname\fR,\fInickname\fR,\fI...\fP
834 Do not use the specified nodes as introduction points for the hidden
835 service. In normal use there is no reason to set this.
838 \fBPublishHidServDescriptors \fR\fB0\fR|\fB1\fR\fP
839 If set to 0, Tor will run any hidden services you configure, but it won't
840 advertise them to the rendezvous directory. This option is only useful
841 if you're using a Tor controller that handles hidserv publishing for you.
842 (Default: 1)
845 \fBRendPostPeriod \fR\fIN\fR \fBseconds\fR|\fBminutes\fR|\fBhours\fR|\fBdays\fR|\fBweeks\fP
846 Every time the specified period elapses, Tor uploads any rendezvous
847 service descriptors to the directory servers.  This information is also
848 uploaded whenever it changes.  (Default: 20 minutes)
850 .\" UNDOCUMENTED
851 .\" ignoreversion
853 .SH SIGNALS
854 Tor catches the following signals:
857 \fBSIGTERM\fR
858 Tor will catch this, clean up and sync to disk if necessary, and exit.
861 \fBSIGINT\fR
862 Tor clients behave as with SIGTERM; but Tor servers will do a controlled
863 slow shutdown, closing listeners and waiting 30 seconds before exiting.
864 (The delay can be configured with the ShutdownWaitLength config option.)
867 \fBSIGHUP\fR
868 The signal instructs Tor to reload its configuration (including closing
869 and reopening logs), fetch a new directory, and kill and restart its
870 helper processes if applicable.
873 \fBSIGUSR1\fR
874 Log statistics about current connections, past connections, and
875 throughput.
878 \fBSIGUSR2\fR
879 Switch all logs to loglevel debug. You can go back to the old loglevels
880 by sending a SIGHUP.
883 \fBSIGCHLD\fR
884 Tor receives this signal when one of its helper processes has exited,
885 so it can clean up.
888 \fBSIGPIPE\fR
889 Tor catches this signal and ignores it.
892 \fBSIGXFSZ\fR
893 If this signal exists on your platform, Tor catches and ignores it.
895 .SH FILES
898 .B @CONFDIR@/torrc
899 The configuration file, which contains "option value" pairs.
902 .B @LOCALSTATEDIR@/lib/tor/
903 The tor process stores keys and other data here.
906 .B \fIDataDirectory\fP/approved-routers
907 Only for naming authoritative directory servers
908 (see \fBNamingAuthoritativeDirectory\fP).
909 This file lists nickname to identity bindings.  Each line lists a
910 nickname and a fingerprint seperated by whitespace.  See your
911 \fBfingerprint\fP file in the \fIDataDirectory\fP for an example line.
912 If the nickname is \fB!reject\fP then descriptors from the given
913 identity (fingerprint) are rejected by the authoritative directory
914 server. If it is \fB!invalid\fP then descriptors are accepted but marked
915 in the directory as not valid, that is, not recommended.
916 .SH SEE ALSO
917 .BR privoxy (1),
918 .BR tsocks (1),
919 .BR torify (1)
921 .BR http://tor.eff.org/
923 .SH BUGS
924 Plenty, probably. Tor is still in development. Please report them.
925 .SH AUTHORS
926 Roger Dingledine <arma@mit.edu>, Nick Mathewson <nickm@alum.mit.edu>.