bump stable to 0.1.2.19
[tor.git] / doc / tor.1.in
bloba5c27b490ad63b8ac0a8657e5f4f356811e89fac
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 \fB--hash-password\fP
30 Generates a hashed password for control port access.
31 .LP
32 .TP
33 \fB--list-fingerprint\fP
34 Generate your keys and output your nickname and fingerprint.
35 .LP
36 .TP
37 \fB--verify-config\fP
38 Verify the configuration file is valid.
39 .LP
40 .TP
41 \fB--nt-service\fP
42 \fB--service [install|remove|start|stop]\fP
43 Manage the Tor Windows NT/2000/XP service.  Current instructions can 
44 be found at http://wiki.noreply.org/noreply/TheOnionRouter/TorFAQ#WinNTService
45 .LP
46 .TP
47 \fB--list-torrc-options\fP
48 List all valid options.
49 .LP
50 .TP
51 \fB--version\fP
52 Display Tor version.
53 .LP
54 .TP
55 Other options can be specified either on the command-line (\fI--option
56 value\fR), or in the configuration file (\fIoption value\fR).
57 Options are case-insensitive.
58 .LP
59 .TP
60 \fBBandwidthRate \fR\fIN\fR \fBbytes\fR|\fBKB\fR|\fBMB\fR|\fBGB\fR|\fBTB\fP
61 A token bucket limits the average incoming bandwidth usage on this node
62 to the specified number of bytes per second, and the average outgoing
63 bandwidth usage to that same value. (Default: 3 MB)
64 .LP
65 .TP
66 \fBBandwidthBurst \fR\fIN\fR \fBbytes\fR|\fBKB\fR|\fBMB\fR|\fBGB\fR|\fBTB\fP
67 Limit the maximum token bucket size (also known as the burst) to the
68 given number of bytes in each direction. This value should be at least
69 twice your BandwidthRate. (Default: 6 MB)
70 .LP
71 .TP
72 \fBMaxAdvertisedBandwidth \fR\fIN\fR \fBbytes\fR|\fBKB\fR|\fBMB\fR|\fBGB\fR|\fBTB\fP
73 If set, we will not advertise more than this amount of bandwidth for our
74 BandwidthRate. Server operators who want to reduce the number of clients
75 who ask to build circuits through them (since this is proportional to
76 advertised bandwidth rate) can thus reduce the CPU demands on their
77 server without impacting network performance.
78 .LP
79 .TP
80 \fBConnLimit \fR\fINUM\fP
81 The minimum number of file descriptors that must be available to
82 the Tor process before it will start. Tor will ask the OS for as
83 many file descriptors as the OS will allow (you can find this
84 by "ulimit -H -n"). If this number is less than ConnLimit, then
85 Tor will refuse to start.
87 You probably don't need to adjust this. It has no effect on
88 Windows since that platform lacks getrlimit(). (Default: 1000)
89 .LP
90 .TP
91 \fBControlPort \fR\fIPort\fP
92 If set, Tor will accept connections on this port and allow those
93 connections to control the Tor process using the Tor Control Protocol
94 (described in control-spec.txt).  Note: unless you also specify one of
95 \fBHashedControlPassword\fP or \fBCookieAuthentication\fP, setting
96 this option will cause Tor to allow any process on the local host to
97 control it. This option is required for many Tor controllers; most use
98 the value of 9051.
99 .LP
101 \fBControlListenAddress \fR\fIIP\fR[:\fIPORT\fR]\fP
102 Bind the controller listener to this address. If you specify a port,
103 bind to this port rather than the one specified in ControlPort. We
104 strongly recommend that you leave this alone unless you know what you're
105 doing, since giving attackers access to your control listener is really
106 dangerous. (Default: 127.0.0.1)
107 This directive can be specified multiple times to bind to multiple
108 addresses/ports.
111 \fBHashedControlPassword \fR\fIhashed_password\fP
112 Don't allow any connections on the control port except when the other process
113 knows the password whose one-way hash is \fIhashed_password\fP.  You can
114 compute the hash of a password by running "tor --hash-password
115 \fIpassword\fP".
118 \fBCookieAuthentication \fR\fB0\fR|\fB1\fP
119 If this option is set to 1, don't allow any connections on the control port
120 except when the connecting process knows the contents of a file named
121 "control_auth_cookie", which Tor will create in its data directory.  This
122 authentication methods should only be used on systems with good filesystem
123 security. (Default: 0)
126 \fBDataDirectory \fR\fIDIR\fP
127 Store working data in DIR (Default: @LOCALSTATEDIR@/lib/tor)
130 \fBDirServer \fR[\fInickname\fR] [\fBflags\fR] \fIaddress\fR\fB:\fIport fingerprint\fP
131 Use a nonstandard authoritative directory server at the provided
132 address and port, with the specified key fingerprint.  This option can
133 be repeated many times, for multiple authoritative directory
134 servers.  Flags are separated by spaces, and determine what kind of an
135 authority this directory is.  By default, every authority is authoritative
136 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
137 authority for old-style (v1) directories as well.  (Only directory mirrors
138 care about this.)  Tor will use this server as an authority for hidden
139 service information if the "hs" flag is set, or if the "v1" flag is set and
140 the "no-hs" flag is \fBnot\fP set.  If a flag "orport=\fBport\fR" is given,
141 Tor will use the given port when opening encrypted tunnels to the
142 dirserver.
143 If no \fBdirserver\fP line is given, Tor will use the default
144 directory servers.  NOTE: this option is intended
145 for setting up a private Tor network with its own directory authorities.  If
146 you use it, you will be distinguishable from other users, because you won't
147 believe the same authorities they do.
150 \fBFetchHidServDescriptors \fR\fB0\fR|\fB1\fR\fP
151 If set to 0, Tor will never fetch any hidden service descriptors from
152 the rendezvous directories. This option is only useful if you're using
153 a Tor controller that handles hidserv fetches for you.
154 (Default: 1)
157 \fBFetchServerDescriptors \fR\fB0\fR|\fB1\fR\fP
158 If set to 0, Tor will never fetch any network status summaries or server
159 descriptors from the directory servers. This option is only useful if
160 you're using a Tor controller that handles directory fetches for you.
161 (Default: 1)
164 \fBFetchUselessDescriptors \fR\fB0\fR|\fB1\fR\fP
165 If set to 1, Tor will fetch every non-obsolete descriptor from the
166 authorities that it hears about. Otherwise, it will avoid fetching
167 useless descriptors, for example for routers that are not running.
168 This option is useful if you're using the contributed "exitlist"
169 script to enumerate Tor nodes that exit to certain addresses.
170 (Default: 0)
173 \fBGroup \fR\fIGID\fP
174 On startup, setgid to this group.
177 \fBHttpProxy\fR \fIhost\fR[:\fIport\fR]\fP
178 Tor will make all its directory requests through this host:port
179 (or host:80 if port is not specified),
180 rather than connecting directly to any directory servers.
183 \fBHttpProxyAuthenticator\fR \fIusername:password\fP
184 If defined, Tor will use this username:password for Basic Http proxy
185 authentication, as in RFC 2617. This is currently the only form of
186 Http proxy authentication that Tor supports; feel free to submit a
187 patch if you want it to support others.
190 \fBHttpsProxy\fR \fIhost\fR[:\fIport\fR]\fP
191 Tor will make all its OR (SSL) connections through this host:port
192 (or host:443 if port is not specified), via HTTP CONNECT rather than
193 connecting directly to servers.  You may want to set \fBFascistFirewall\fR
194 to restrict the set of ports you might try to connect to, if your Https
195 proxy only allows connecting to certain ports.
198 \fBHttpsProxyAuthenticator\fR \fIusername:password\fP
199 If defined, Tor will use this username:password for Basic Https proxy
200 authentication, as in RFC 2617. This is currently the only form of
201 Https proxy authentication that Tor supports; feel free to submit a
202 patch if you want it to support others.
205 \fBKeepalivePeriod \fR\fINUM\fP
206 To keep firewalls from expiring connections, send a padding keepalive
207 cell every NUM seconds on open connections that are in use. If the
208 connection has no open circuits, it will instead be closed after NUM
209 seconds of idleness. (Default: 5 minutes)
212 \fBLog \fR\fIminSeverity\fR[-\fImaxSeverity\fR] \fBstderr\fR|\fBstdout\fR|\fBsyslog\fR\fP
213 Send all messages between \fIminSeverity\fR and \fImaxSeverity\fR to
214 the standard output stream, the standard error stream, or to the system
215 log. (The "syslog" value is only supported on Unix.)  Recognized
216 severity levels are debug, info, notice, warn, and err.  We advise using
217 "notice" in most cases, since anything more verbose may provide sensitive
218 information to an attacker who obtains the logs.  If only one
219 severity level is given, all messages of that level or higher will be
220 sent to the listed destination.
223 \fBLog \fR\fIminSeverity\fR[-\fImaxSeverity\fR] \fBfile\fR \fIFILENAME\fP
224 As above, but send log messages to the listed filename.  The "Log"
225 option may appear more than once in a configuration file.  Messages
226 are sent to all the logs that match their severity level.
229 \fBOutboundBindAddress \fR\fIIP\fP
230 Make all outbound connections originate from the IP address specified.  This
231 is only useful when you have multiple network interfaces, and you want all
232 of Tor's outgoing connections to use a single one.
235 \fBPidFile \fR\fIFILE\fP
236 On startup, write our PID to FILE. On clean shutdown, remove FILE.
239 \fBProtocolWarnings \fR\fB0\fR|\fB1\fR\fP
240 If 1, Tor will log with severity 'warn' various cases of other parties
241 not following the Tor specification. Otherwise, they are logged with
242 severity 'info'. (Default: 0)
245 \fBRunAsDaemon \fR\fB0\fR|\fB1\fR\fP
246 If 1, Tor forks and daemonizes to the background. This option has
247 no effect on Windows; instead you should use the --service command-line
248 option. (Default: 0)
251 \fBSafeLogging \fR\fB0\fR|\fB1\fP
252 If 1, Tor replaces potentially sensitive strings in the logs
253 (e.g. addresses) with the string [scrubbed]. This way logs can still be
254 useful, but they don't leave behind personally identifying information
255 about what sites a user might have visited. (Default: 1)
258 \fBUser \fR\fIUID\fP
259 On startup, setuid to this user.
262 \fBHardwareAccel \fR\fB0\fR|\fB1\fP
263 If non-zero, try to use crypto hardware acceleration when
264 available. This is untested and probably buggy. (Default: 0)
267 \fBAvoidDiskWrites \fR\fB0|\fR\fB1\fP
268 If non-zero, try to write to disk less frequently than we would otherwise.
269 This is useful when running on flash memory or other media that support only
270 a limited number of writes.  (Default: 0)
273 \fBTunnelDirConns \fR\fB0|\fR\fB1\fP
274 If non-zero, when a directory server we contact supports it, we will
275 build a one-hop circuit and make an encrypted connection via its
276 ORPort. (Default: 0)
279 \fBPreferTunneledDirConns \fR\fB0|\fR\fB1\fP
280 If non-zero, we will avoid directory servers that don't support tunneled
281 directory connections, when possible. (Default: 0)
283 .SH CLIENT OPTIONS
285 The following options are useful only for clients (that is, if \fBSocksPort\fP is non-zero):
288 \fBAllowInvalidNodes\fR \fBentry\fR|\fBexit\fR|\fBmiddle\fR|\fBintroduction\fR|\fBrendezvous\fR|...\fP
289 If some Tor servers are obviously not working right, the directory
290 authorities can manually mark them as invalid, meaning that it's not
291 recommended you use them for entry or exit positions in your circuits. You
292 can opt to use them in some circuit positions, though. The default is
293 "middle,rendezvous", and other choices are not advised.
296 \fBCircuitBuildTimeout \fR\fINUM\fP
297 Try for at most NUM seconds when building circuits. If the circuit
298 isn't open in that time, give up on it.
299 (Default: 1 minute.)
302 \fBCircuitIdleTimeout \fR\fINUM\fP
303 If we have keept a clean (never used) circuit around for NUM seconds,
304 then close it. This way when the Tor client is entirely idle, it can
305 expire all of its circuits, and then expire its TLS connections. Also,
306 if we end up making a circuit that is not useful for exiting any of
307 the requests we're receiving, it won't forever take up a slot in the
308 circuit list.
309 (Default: 1 hour.)
312 \fBClientOnly \fR\fB0\fR|\fB1\fR\fP
313 If set to 1, Tor will under no circumstances run as a server. The default
314 is to run as a client unless ORPort is configured.  (Usually,
315 you don't need to set this; Tor is pretty smart at figuring out whether
316 you are reliable and high-bandwidth enough to be a useful server.)
317 (Default: 0)
320 \fBExcludeNodes \fR\fInickname\fR,\fInickname\fR,\fI...\fP
321 A list of nodes to never use when building a circuit.
324 \fBEntryNodes \fR\fInickname\fR,\fInickname\fR,\fI...\fP
325 A list of preferred nodes to use for the first hop in the circuit.
326 These are treated only as preferences unless StrictEntryNodes (see
327 below) is also set.
330 \fBExitNodes \fR\fInickname\fR,\fInickname\fR,\fI...\fP
331 A list of preferred nodes to use for the last hop in the circuit.
332 These are treated only as preferences unless StrictExitNodes (see
333 below) is also set.
336 \fBStrictEntryNodes \fR\fB0\fR|\fB1\fR\fP
337 If 1, Tor will never use any nodes besides those listed in "EntryNodes" for
338 the first hop of a circuit.
341 \fBStrictExitNodes \fR\fB0\fR|\fB1\fR\fP
342 If 1, Tor will never use any nodes besides those listed in "ExitNodes" for
343 the last hop of a circuit.
346 \fBFascistFirewall \fR\fB0\fR|\fB1\fR\fP
347 If 1, Tor will only create outgoing connections to ORs running on ports that
348 your firewall allows (defaults to 80 and 443; see \fBFirewallPorts\fR).  This will
349 allow you to run Tor as a client behind a firewall with restrictive policies,
350 but will not allow you to run as a server behind such a firewall.
351 This option is deprecated; use
352 ReachableAddresses instead.
355 \fBFirewallPorts \fR\fIPORTS\fP
356 A list of ports that your firewall allows you to connect to.  Only
357 used when \fBFascistFirewall\fR is set. This option is deprecated; use
358 ReachableAddresses instead. (Default: 80, 443)
361 \fBReachableAddresses \fR\fIADDR\fP[\fB/\fP\fIMASK\fP][:\fIPORT\fP]...\fP
362 A comma-separated list of IP addresses and ports that your firewall allows you
363 to connect to. The format is as
364 for the addresses in ExitPolicy, except that "accept" is understood
365 unless "reject" is explicitly provided.  For example, 'ReachableAddresses
366 99.0.0.0/8, reject 18.0.0.0/8:80, accept *:80' means that your
367 firewall allows connections to everything inside net 99, rejects port
368 80 connections to net 18, and accepts connections to port 80 otherwise.
369 (Default: 'accept *:*'.)
372 \fBReachableDirAddresses \fR\fIADDR\fP[\fB/\fP\fIMASK\fP][:\fIPORT\fP]...\fP
373 Like \fBReachableAddresses\fP, a list of addresses and ports.  Tor will obey
374 these restrictions when fetching directory information, using standard HTTP
375 GET requests. If not set explicitly then the value of \fBReachableAddresses\fP
376 is used.  If \fBHttpProxy\fR is set then these connections will go through that
377 proxy.
380 \fBReachableORAddresses \fR\fIADDR\fP[\fB/\fP\fIMASK\fP][:\fIPORT\fP]...\fP
381 Like \fBReachableAddresses\fP, a list of addresses and ports.  Tor will obey
382 these restrictions when connecting to Onion Routers, using TLS/SSL.  If not set
383 explicitly then the value of \fBReachableAddresses\fP is used. If
384 \fBHttpsProxy\fR is set then these connections will go through that proxy.
386 The separation between \fBReachableORAddresses\fP and
387 \fBReachableDirAddresses\fP is only interesting when you are connecting through
388 proxies (see \fBHttpProxy\fR and \fBHttpsProxy\fR).  Most proxies limit TLS
389 connections (which Tor uses to connect to Onion Routers) to port 443, and some
390 limit HTTP GET requests (which Tor uses for fetching directory information) to
391 port 80.
394 \fBLongLivedPorts \fR\fIPORTS\fP
395 A list of ports for services that tend to have long-running connections
396 (e.g. chat and interactive shells). Circuits for streams that use these
397 ports will contain only high-uptime nodes, to reduce the chance that a
398 node will go down before the stream is finished.
399 (Default: 21, 22, 706, 1863, 5050, 5190, 5222, 5223, 6667, 6697, 8300)
402 \fBMapAddress\fR \fIaddress\fR \fInewaddress\fR
403 When a request for address arrives to Tor, it will rewrite it to
404 newaddress before processing it. For example, if you always want
405 connections to www.indymedia.org to exit via \fItorserver\fR (where
406 \fItorserver\fR is the nickname of the server),
407 use "MapAddress www.indymedia.org www.indymedia.org.torserver.exit".
410 \fBNewCircuitPeriod \fR\fINUM\fP
411 Every NUM seconds consider whether to build a new circuit. (Default: 30 seconds)
414 \fBMaxCircuitDirtiness \fR\fINUM\fP
415 Feel free to reuse a circuit that was first used at most NUM seconds ago,
416 but never attach a new stream to a circuit that is too old.
417 (Default: 10 minutes)
420 \fBEnforceDistinctSubnets \fR\fB0\fR|\fB1\fR\fP
421 If 1, Tor will not put two servers whose IP addresses are "too
422 close" on the same circuit.  Currently, two addresses are
423 "too close" if they lie in the same /16 range. (Default: 1)
425 .\" \fBPathlenCoinWeight \fR\fI0.0-1.0\fP
426 .\" Paths are 3 hops plus a geometric distribution centered around this coinweight.
427 .\" Must be >=0.0 and <1.0. (Default: 0.3) NOT USED CURRENTLY
428 .\" .TP
431 \fBRendNodes \fR\fInickname\fR,\fInickname\fR,\fI...\fP
432 A list of preferred nodes to use for the rendezvous point, if possible.
435 \fBRendExcludeNodes \fR\fInickname\fR,\fInickname\fR,\fI...\fP
436 A list of nodes to never use when choosing a rendezvous point.
439 \fBSocksPort \fR\fIPORT\fP
440 Advertise this port to listen for connections from Socks-speaking
441 applications.  Set this to 0 if you don't want to allow application
442 connections. (Default: 9050)
445 \fBSocksListenAddress \fR\fIIP\fR[:\fIPORT\fR]\fP
446 Bind to this address to listen for connections from Socks-speaking
447 applications. (Default: 127.0.0.1) You can also specify a port
448 (e.g. 192.168.0.1:9100).
449 This directive can be specified multiple times to bind to multiple
450 addresses/ports.
453 \fBSocksPolicy \fR\fIpolicy\fR,\fIpolicy\fR,\fI...\fP
454 Set an entrance policy for this server, to limit who can connect to the
455 Socks ports.
456 The policies have the same form as exit policies below.
459 \fBSocksTimeout \fR\fINUM\fP
460 Let a socks connection wait NUM seconds handshaking, and NUM seconds
461 unattached waiting for an appropriate circuit, before we fail it.
462 (Default: 2 minutes.)
465 \fBTestVia \fR\fInickname\fR,\fInickname\fR,\fI...\fP
466 A list of nodes to prefer for your middle hop when building testing
467 circuits. This option is mainly for debugging reachability problems.
470 \fBTrackHostExits \fR\fIhost\fR,\fI.domain\fR,\fI...\fR\fP
471 For each value in the comma separated list, Tor will track recent connections
472 to hosts that match this value and attempt to
473 reuse the same exit node for each. If the value is prepended with a '.', it is
474 treated as matching an entire domain. If one of the values is just a '.', it
475 means match everything. This option is useful if you frequently connect to
476 sites that will expire all your authentication cookies (ie log you out) if
477 your IP address changes. Note that this option does have the disadvantage of
478 making it more clear that a given history is
479 associated with a single user. However, most people who would wish to observe
480 this will observe it through cookies or other protocol-specific means anyhow.
483 \fBTrackHostExitsExpire \fR\fINUM\fP
484 Since exit servers go up and down, it is desirable to expire the association
485 between host and exit server after NUM seconds. The default
486 is 1800 seconds (30 minutes).
489 \fBUseEntryGuards \fR\fB0\fR|\fB1\fR\fP
490 If this option is set to 1, we pick a few long-term entry servers, and
491 try to stick with them.  This is desirable because
492 constantly changing servers increases the odds that an adversary who owns
493 some servers will observe a fraction of your paths.
494 (Defaults to 1.)
497 \fBNumEntryGuards \fR\fINUM\fP
498 If UseEntryGuards is set to 1, we will try to pick a total of NUM routers
499 as long-term entries for our circuits.
500 (Defaults to 3.)
503 \fBSafeSocks \fR\fB0\fR|\fB1\fR\fP
504 When this option is enabled, Tor will reject application connections that
505 use unsafe variants of the socks protocol -- ones that only provide an
506 IP address, meaning the application is doing a DNS resolve first.
507 Specifically, these are socks4 and socks5 when not doing remote DNS.
508 (Defaults to 0.)
511 \fBTestSocks \fR\fB0\fR|\fB1\fR\fP
512 When this option is enabled, Tor will make a notice-level log entry for
513 each connection to the Socks port indicating whether the request used
514 a safe socks protocol or an unsafe one (see above entry on SafeSocks).
515 This helps to determine whether an application using Tor is possibly
516 leaking DNS requests.
517 (Default: 0)
520 \fBVirtualAddrNetwork \fR\fIAddress\fB/\fIbits\fP
521 When a controller asks for a virtual (unused) address with the
522 MAPADDRESS command, Tor picks an unassigned address from this range.
523 (Default: 127.192.0.0/10)
525 When providing proxy server service to a network of computers using a tool like
526 dns-proxy-tor,
527 change this address to "10.192.0.0/10" or "172.16.0.0/12".
528 The default \fBVirtualAddrNetwork\fP address range on a 
529 properly configured machine will route to the loopback interface. 
530 For local use, no change to the
531 default \fBVirtualAddrNetwork\fP setting is needed.
534 \fBAllowNonRFC953Hostnames \fR\fB0\fR|\fB1\fR\fP
535 When this option is disabled, Tor blocks hostnames containing illegal
536 characters (like @ and :) rather than sending them to an exit node to be
537 resolved.  This helps trap accidental attempts to resolve URLs and so on.
538 (Default: 0)
541 \fBFastFirstHopPK \fR\fB0\fR|\fB1\fR\fP
542 When this option is enabled and we aren't running as a server, Tor
543 skips the public key step for the first hop of creating circuits.  This is
544 safe since we have already used TLS to authenticate the server and to
545 establish forward-secure keys.  Turning this option off makes circuit
546 building slower.
547 (Default: 1)
550 \fBTransPort\fP \fR\fIPORT\fP
551 If non-zero, enables transparent proxy support on \fR\fIPORT\fP (by
552 convention, 9040).
553 .\" This is required to enable support for \fBdns-proxy-tor\fP.
554 .\" ControlPort must be set when using \fBTransPort\fP.
555 Requires OS support for transparent proxies, such as BSDs' pf or
556 Linux's IPTables.
557 If you're planning 
558 to use Tor as a transparent proxy for a network, you'll want to examine 
559 and change VirtualAddrNetwork from the default setting. You'll also want
560 to set the TransListenAddress option for the network you'd like to proxy.
561 (Default: 0).
564 \fBTransListenAddress\fP \fR\fIIP\fR[:\fIPORT\fR]\fP
565 Bind to this address to listen for transparent proxy connections.
566 (Default: 127.0.0.1).  
567 This is useful for exporting a transparent proxy server 
568 to an entire network.
571 \fBNATDPort\fP \fR\fIPORT\fP
572 Allow old versions of ipfw (as included in old versions of FreeBSD,
573 etc.) to send connections through Tor using the NATD protocol.
574 This option is only for people who cannot
575 use TransPort.
578 \fBNATDListenAddress\fP \fR\fIIP\fR[:\fIPORT\fR]\fP
579 Bind to this address to listen for NATD connections.
580 (Default: 127.0.0.1).
583 .SH SERVER OPTIONS
585 The following options are useful only for servers (that is, if \fBORPort\fP is non-zero):
588 \fBAddress \fR\fIaddress\fP
589 The IP or fqdn of this server (e.g. moria.mit.edu). You can leave this
590 unset, and Tor will guess your IP.
593 \fBAssumeReachable \fR\fB0\fR|\fB1\fR\fP
594 This option is used when bootstrapping a new Tor network. If set to 1,
595 don't do self-reachability testing; just upload your server descriptor
596 immediately. If \fBAuthoritativeDirectory\fP is also set, this option
597 instructs the dirserver to bypass remote reachability testing too and
598 list all connected servers as running.
601 \fBContactInfo \fR\fIemail_address\fP
602 Administrative contact information for server. This line might get
603 picked up by spam harvesters, so you may want to obscure the fact
604 that it's an email address.
607 \fBExitPolicy \fR\fIpolicy\fR,\fIpolicy\fR,\fI...\fP
608 Set an exit policy for this server. Each policy is of the form
609 "\fBaccept\fP|\fBreject\fP \fIADDR\fP[\fB/\fP\fIMASK\fP]\fB[:\fP\fIPORT\fP]".
610 If \fB/\fP\fIMASK\fP is omitted then this policy just applies to the host
611 given.  Instead of giving a host or network you can also use "\fB*\fP" to
612 denote the universe (0.0.0.0/0).  \fIPORT\fP can be a single port number,
613 an interval of ports "\fIFROM_PORT\fP\fB-\fP\fITO_PORT\fP", or "\fB*\fP".
614 If \fIPORT\fP is omitted, that means "\fB*\fP".
616 For example, "accept 18.7.22.69:*,reject 18.0.0.0/8:*,accept *:*" would
617 reject any traffic destined for MIT except for web.mit.edu, and
618 accept anything else.
620 To specify all internal and link-local networks (including 0.0.0.0/8,
621 169.254.0.0/16, 127.0.0.0/8, 192.168.0.0/16, 10.0.0.0/8, and
622 172.16.0.0/12), you can use the "private" alias instead of an address.
623 These addresses are rejected by default (at the beginning of your
624 exit policy), along with your public IP address, unless you set the
625 ExitPolicyRejectPrivate config option
626 to 0. For example, once you've done that, you could allow HTTP to
627 127.0.0.1 and block all other connections to internal networks with
628 "accept 127.0.0.1:80,reject private:*", though that may also allow
629 connections to your own computer that are addressed to its public
630 (external) IP address. See RFC 1918 and RFC 3330 for more
631 details about internal and reserved IP address space.
633 This directive can be specified multiple times so you don't have to put
634 it all on one line.
636 Policies are considered first to last, and the first match wins. If
637 you want to _replace_ the default exit policy, end your exit policy with
638 either a reject *:* or an accept *:*. Otherwise, you're _augmenting_
639 (prepending to) the default exit policy. The default exit policy is:
640 .PD 0
641 .RS 12
642 .IP "reject *:25"
643 .IP "reject *:119"
644 .IP "reject *:135-139"
645 .IP "reject *:445"
646 .IP "reject *:465"
647 .IP "reject *:563"
648 .IP "reject *:587"
649 .IP "reject *:1214"
650 .IP "reject *:4661-4666"
651 .IP "reject *:6346-6429"
652 .IP "reject *:6699"
653 .IP "reject *:6881-6999"
654 .IP "accept *:*"
659 \fBExitPolicyRejectPrivate \fR\fB0\fR|\fB1\fR\fP
660 Reject all private (local) networks, along with your own public IP
661 address, at the beginning of your exit
662 policy. See above entry on ExitPolicy. (Default: 1)
665 \fBMaxOnionsPending \fR\fINUM\fP
666 If you have more than this number of onionskins queued for decrypt, reject new ones. (Default: 100)
669 \fBMyFamily \fR\fInickname\fR,\fInickname\fR,\fI...\fP
670 Declare that this Tor server is controlled or administered by a group
671 or organization identical or similar to that of the other named servers.
672 When two servers both declare that they are in the same 'family', Tor clients
673 will not use them in the same circuit.  (Each server only needs to list the
674 other servers in its family; it doesn't need to list itself, but it won't hurt.)
677 \fBNickname \fR\fIname\fP
678 Set the server's nickname to 'name'. Nicknames must be between 1
679 and 19 characters inclusive, and must contain only the characters
680 [a-zA-Z0-9].
683 \fBNumCPUs \fR\fInum\fP
684 How many processes to use at once for decrypting onionskins. (Default: 1)
687 \fBORPort \fR\fIPORT\fP
688 Advertise this port to listen for connections from Tor clients and servers.
691 \fBORListenAddress \fR\fIIP\fR[:\fIPORT\fR]\fP
692 Bind to this IP address to listen for connections from Tor clients and
693 servers. If you specify a port, bind to this port rather than the one
694 specified in ORPort. (Default: 0.0.0.0)
695 This directive can be specified multiple times to bind to multiple
696 addresses/ports.
699 \fBPublishServerDescriptor \fR\fB0\fR|\fB1\fR\fP
700 If set to 0, Tor will act as a server if you have an ORPort
701 defined, but it will not publish its descriptor to the dirservers. This
702 option is useful if you're testing out your server, or if you're using
703 a Tor controller that handles directory publishing for you.
704 (Default: 1)
707 \fBRedirectExit \fR\fIpattern target\fP
708 Whenever an outgoing connection tries to connect to one of a given set
709 of addresses, connect to \fItarget\fP (an \fIaddress:port\fP pair) instead.
710 The address
711 pattern is given in the same format as for an exit policy.  The
712 address translation applies after exit policies are applied.  Multiple
713 \fBRedirectExit\fP options can be used: once any one has matched
714 successfully, no subsequent rules are considered.  You can specify that no
715 redirection is to be performed on a given set of addresses by using the
716 special target string "pass", which prevents subsequent rules from being
717 considered.
720 \fBShutdownWaitLength\fR \fINUM\fP
721 When we get a SIGINT and we're a server, we begin shutting down: we close
722 listeners and start refusing new circuits. After \fBNUM\fP seconds,
723 we exit. If we get a second SIGINT, we exit immediately.  (Default:
724 30 seconds)
727 \fBAccountingMax \fR\fIN\fR \fBbytes\fR|\fBKB\fR|\fBMB\fR|\fBGB\fR|\fBTB\fP
728 Never send more than the specified number of bytes in a given
729 accounting period, or receive more than that number in the period.
730 For example, with AccountingMax set to 1 GB, a server could send 900 MB
731 and receive 800 MB and continue running. It will only hibernate once one
732 of the two reaches 1 GB.
733 When the number of bytes is exhausted, Tor will hibernate until some
734 time in the next accounting period.  To prevent all servers from
735 waking at the same time, Tor will also wait until a random point in
736 each period before waking up.  If you have bandwidth cost issues,
737 enabling hibernation is preferable to setting a low bandwidth, since it
738 provides users with a collection of fast servers that are up some of
739 the time, which is more useful than a set of slow servers that are
740 always "available".
743 \fBAccountingStart \fR\fBday\fR|\fBweek\fR|\fBmonth\fR [\fIday\fR] \fIHH:MM\fR\fP
744 Specify how long accounting periods last.  If \fBmonth\fP is given,
745 each accounting period runs from the time \fIHH:MM\fR on the
746 \fIday\fRth day of one month to the same day and time of the next.
747 (The day must be between 1 and 28.)  If \fBweek\fP is given, each
748 accounting period runs from the time \fIHH:MM\fR of the \fIday\fRth
749 day of one week to the same day and time of the next week, with Monday
750 as day 1 and Sunday as day 7.  If \fBday\fR is given, each accounting
751 period runs from the time \fIHH:MM\fR each day to the same time on the
752 next day.  All times are local, and given in 24-hour time.  (Defaults to
753 "month 1 0:00".)
756 \fBServerDNSResolvConfFile \fR\fIfilename\fP
757 Overrides the default DNS configuration with the configuration in
758 \fIfilename\fP.  The file format is the same as the standard Unix
759 "\fBresolv.conf\fP" file (7).  This option, like all other
760 ServerDNS options, only affects name lookup that your server does on
761 behalf of clients.  Also, it only takes effect if Tor was built with
762 eventdns support.  (Defaults to use the system DNS configuration.)
765 \fBServerDNSSearchDomains \fR\fB0\fR|\fB1\fR\fP
766 If set to \fB1\fP, then we will search for addresses in the local search
767 domain.  For example, if this system is configured to believe it is in
768 "example.com", and a client tries to connect to "www", the client will be
769 connected to "www.example.com".
770 This option only affects name lookup that your server does on
771 behalf of clients, and only takes effect if Tor was build with
772 eventdns support.
773 (Defaults to "0".)
776 \fBServerDNSDetectHijacking \fR\fB0\fR|\fB1\fR\fP
777 When this option is set to 1, we will test periodically to determine whether
778 our local nameservers have been configured to hijack failing DNS requests
779 (usually to an advertising site).  If they are, we will attempt to correct
780 this.
781 This option only affects name lookup that your server does on
782 behalf of clients, and only takes effect if Tor was build with
783 eventdns support.
784 (Defaults to "1".)
787 \fBServerDNSTestAddresses \fR\fIaddress\fR,\fIaddress\fR,\fI...\fP
788 When we're detecting DNS hijacking, make sure that these \fIvalid\fP
789 addresses aren't getting redirected.  If they are, then our DNS is
790 completely useless, and we'll reset our exit policy to "reject *:*".
791 This option only affects name lookup that your server does on
792 behalf of clients, and only takes effect if Tor was build with
793 eventdns support.
794 (Defaults to "www.google.com, www.mit.edu, www.yahoo.com,
795 www.slashdot.org".)
798 \fBServerDNSAllowNonRFC953Hostnames \fR\fB0\fR|\fB1\fR\fP
799 When this option is disabled, Tor does not try to resolve hostnames
800 containing illegal characters (like @ and :) rather than sending them to an
801 exit node to be resolved.  This helps trap accidental attempts to resolve
802 URLs and so on.
803 This option only affects name lookup that your server does on
804 behalf of clients, and only takes effect if Tor was build with
805 eventdns support.
806 (Default: 0)
808 .SH DIRECTORY SERVER OPTIONS
810 The following options are useful only for directory servers (that is, if \fBDirPort\fP is non-zero):
813 \fBAuthoritativeDirectory \fR\fB0\fR|\fB1\fR\fP
814 When this option is set to 1, Tor operates as an authoritative
815 directory server.  Instead of caching the directory, it generates its
816 own list of good servers, signs it, and sends that to the clients.
817 Unless the clients already have you listed as a trusted directory, you
818 probably do not want to set this option.  Please coordinate with the other
819 admins at tor-ops@freehaven.net if you think you should be a directory.
822 \fBV1AuthoritativeDirectory \fR\fB0\fR|\fB1\fR\fP
823 When this option is set in addition to \fBAuthoritativeDirectory\fP, Tor also
824 generates a version 1 directory (for Tor clients up to 0.1.0.x).
825 (As of Tor 0.1.1.12 every (v2) authoritative directory still provides most of
826 the v1 directory functionality, even without this option set to 1.
827 This however is expected to change in the future.)
830 \fBVersioningAuthoritativeDirectory \fR\fB0\fR|\fB1\fR\fP
831 When this option is set to 1, Tor adds information on
832 which versions of Tor are still believed safe for use to
833 the published directory.  Each version 1 authority is
834 automatically a versioning authority; version 2 authorities
835 provide this service optionally.  See \fBRecommendedVersions\fP,
836 \fBRecommendedClientVersions\fP, and \fBRecommendedServerVersions\fP.
839 \fBNamingAuthoritativeDirectory \fR\fB0\fR|\fB1\fR\fP
840 When this option is set to 1, then the server advertises that it has
841 opinions about nickname-to-fingerprint bindings.  It will include these
842 opinions in its published network-status pages, by listing servers with
843 the flag "Named" if a correct binding between that nickname and
844 fingerprint has been registered with the dirserver.  Naming dirservers
845 will refuse to accept or publish descriptors that contradict a
846 registered binding.  See \fBapproved-routers\fP in the \fBFILES\fP
847 section below.
850 \fBHSAuthoritativeDir \fR\fB0\fR|\fB1\fR\fP
851 When this option is set in addition to \fBAuthoritativeDirectory\fP, Tor also
852 accepts and serves hidden service descriptors. (Default: 0)
855 \fBDirPort \fR\fIPORT\fP
856 Advertise the directory service on this port.
859 \fBDirListenAddress \fR\fIIP\fR[:\fIPORT\fR]\fP
860 Bind the directory service to this address. If you specify a port, bind
861 to this port rather than the one specified in DirPort. (Default: 0.0.0.0)
862 This directive can be specified multiple times to bind to multiple
863 addresses/ports.
866 \fBDirPolicy \fR\fIpolicy\fR,\fIpolicy\fR,\fI...\fP
867 Set an entrance policy for this server, to limit who can connect to the
868 directory ports.
869 The policies have the same form as exit policies above.
872 \fBRecommendedVersions \fR\fISTRING\fP
873 STRING is a comma-separated list of Tor versions currently believed
874 to be safe. The list is included in each directory, and nodes which
875 pull down the directory learn whether they need to upgrade.  This
876 option can appear multiple times: the values from multiple lines are
877 spliced together.
878 When this is set then
879 \fBVersioningAuthoritativeDirectory\fP should be set too.
882 \fBRecommendedClientVersions \fR\fISTRING\fP
883 STRING is a comma-separated list of Tor versions currently believed
884 to be safe for clients to use.  This information is included in version 2
885 directories.  If this is not set then the value of \fBRecommendedVersions\fR
886 is used.
887 When this is set then
888 \fBVersioningAuthoritativeDirectory\fP should be set too.
891 \fBRecommendedServerVersions \fR\fISTRING\fP
892 STRING is a comma-separated list of Tor versions currently believed
893 to be safe for servers to use.  This information is included in version 2
894 directories.  If this is not set then the value of \fBRecommendedVersions\fR
895 is used.
896 When this is set then
897 \fBVersioningAuthoritativeDirectory\fP should be set too.
900 \fBDirAllowPrivateAddresses \fR\fB0\fR|\fB1\fR\fP
901 If set to 1, Tor will accept router descriptors with arbitrary "Address"
902 elements. Otherwise, if the address is not an IP or is a private IP,
903 it will reject the router descriptor. Defaults to 0.
906 \fBAuthDirBadExit \fR\fIAddressPattern\fR...\fP
907 Authoritative directories only.  A set of address patterns for servers that
908 will be listed as bad exits in any network status document this authority
909 publishes, if \fBAuthDirListBadExits\fR is set.
912 \fBAuthDirInvalid \fR\fIAddressPattern\fR...\fP
913 Authoritative directories only. A set of address patterns for servers that
914 will never be listed as "valid" in any network status document that this
915 authority publishes.
918 \fBAuthDirReject \fR\fIAddressPattern\fR...\fP
919 Authoritative directories only.  A set of address patterns for servers that
920 will never be listed at all in any network status document that this
921 authority publishes, or accepted as an OR address in any descriptor submitted
922 for publication by this authority.
925 \fBAuthDirListBadExits \fR\fB0\fR|\fB1\fR\fP
926 Authoritative directories only.  If set to 1, this directory has
927 some opinion about which nodes are unsuitable as exit nodes.  (Do not
928 set this to 1 unless you plan to list nonfunctioning exits as bad;
929 otherwise, you are effectively voting in favor of every declared exit
930 as an exit.)
933 \fBAuthDirRejectUnlisted \fR\fB0\fR|\fB1\fR\fP
934 Authoritative directories only.  If set to 1, the directory server
935 rejects all uploaded server descriptors that aren't explicitly listed
936 in the fingerprints file. This acts as a "panic button" if we get
937 Sybiled. (Default: 0)
939 .SH HIDDEN SERVICE OPTIONS
941 The following options are used to configure a hidden service.
944 \fBHiddenServiceDir \fR\fIDIRECTORY\fP
945 Store data files for a hidden service in DIRECTORY.  Every hidden
946 service must have a separate directory.  You may use this option multiple
947 times to specify multiple services.
950 \fBHiddenServicePort \fR\fIVIRTPORT \fR[\fITARGET\fR]\fP
951 Configure a virtual port VIRTPORT for a hidden service.  You may use this
952 option multiple times; each time applies to the service using the most recent
953 hiddenservicedir.  By default, this option maps the virtual port to the
954 same port on 127.0.0.1.  You may override the target port, address, or both
955 by specifying a target of addr, port, or addr:port.
958 \fBHiddenServiceNodes \fR\fInickname\fR,\fInickname\fR,\fI...\fP
959 If possible, use the specified nodes as introduction points for the hidden
960 service. If this is left unset, Tor will be smart and pick some reasonable
961 ones; most people can leave this unset.
964 \fBHiddenServiceExcludeNodes \fR\fInickname\fR,\fInickname\fR,\fI...\fP
965 Do not use the specified nodes as introduction points for the hidden
966 service. In normal use there is no reason to set this.
969 \fBPublishHidServDescriptors \fR\fB0\fR|\fB1\fR\fP
970 If set to 0, Tor will run any hidden services you configure, but it won't
971 advertise them to the rendezvous directory. This option is only useful
972 if you're using a Tor controller that handles hidserv publishing for you.
973 (Default: 1)
976 \fBRendPostPeriod \fR\fIN\fR \fBseconds\fR|\fBminutes\fR|\fBhours\fR|\fBdays\fR|\fBweeks\fP
977 Every time the specified period elapses, Tor uploads any rendezvous
978 service descriptors to the directory servers.  This information is also
979 uploaded whenever it changes.  (Default: 20 minutes)
981 .\" UNDOCUMENTED
982 .\" ignoreversion
984 .SH SIGNALS
985 Tor catches the following signals:
988 \fBSIGTERM\fR
989 Tor will catch this, clean up and sync to disk if necessary, and exit.
992 \fBSIGINT\fR
993 Tor clients behave as with SIGTERM; but Tor servers will do a controlled
994 slow shutdown, closing listeners and waiting 30 seconds before exiting.
995 (The delay can be configured with the ShutdownWaitLength config option.)
998 \fBSIGHUP\fR
999 The signal instructs Tor to reload its configuration (including closing
1000 and reopening logs), fetch a new directory, and kill and restart its
1001 helper processes if applicable.
1004 \fBSIGUSR1\fR
1005 Log statistics about current connections, past connections, and
1006 throughput.
1009 \fBSIGUSR2\fR
1010 Switch all logs to loglevel debug. You can go back to the old loglevels
1011 by sending a SIGHUP.
1014 \fBSIGCHLD\fR
1015 Tor receives this signal when one of its helper processes has exited,
1016 so it can clean up.
1019 \fBSIGPIPE\fR
1020 Tor catches this signal and ignores it.
1023 \fBSIGXFSZ\fR
1024 If this signal exists on your platform, Tor catches and ignores it.
1026 .SH FILES
1029 .B @CONFDIR@/torrc
1030 The configuration file, which contains "option value" pairs.
1033 .B @LOCALSTATEDIR@/lib/tor/
1034 The tor process stores keys and other data here.
1037 .B \fIDataDirectory\fP/cached-status/*
1038 The most recently downloaded network status document for each authority.  Each file holds one such document; the filenames are the hexadecimal identity key fingerprints of the directory authorities.
1041 .B \fIDataDirectory\fB/cached-routers\fR and \fBcached-routers.new\fR
1042 These files hold downloaded router statuses.  Some routers may appear more than once; if so, the most recently published descriptor is used.  The ".new" file is an append-only journal; when it gets too large, all entries are merged into a new cached-routers file.
1045 .B \fIDataDirectory\fP/state
1046 A set of persistent key-value mappings.  These are documented in the file.  These include:
1047 .PD 0
1048 .RS 5
1049 .IP "- The current entry guards and their status."
1050 .IP "- The current bandwidth accounting values (unused so far; see below)."
1051 .IP "- When the file was last written"
1052 .IP "- What version of Tor generated the state file"
1053 .IP "- A short history of bandwidth usage, as produced in the router descriptors."
1058 .B \fIDataDirectory\fP/bw_accounting
1059 Used to track bandwidth accounting values (when the current period starts and ends; how much has been read and written so far this period).  This file is obsolete, and the data is now stored in the 'state' file as well.  Only used when bandwidth accounting is enabled.
1062 .B \fIDataDirectory\fP/control_auth_cookie
1063 Used for cookie authentication with the controller. Regenerated on startup.  See control-spec.txt for details.  Only used when cookie authentication is enabled.
1066 .B \fIDataDirectory\fP/keys/*
1067 Only used by servers.  Holds identity keys and onion keys.
1070 .B \fIDataDirectory\fP/fingerprint
1071 Only used by servers.  Holds the fingerprint of the server's identity key.
1074 .B \fIDataDirectory\fP/approved-routers
1075 Only for naming authoritative directory servers (see \fBNamingAuthoritativeDirectory\fP).  This file lists nickname to identity bindings.  Each line lists a nickname and a fingerprint separated by whitespace.  See your \fBfingerprint\fP file in the \fIDataDirectory\fP for an example line.  If the nickname is \fB!reject\fP then descriptors from the given identity (fingerprint) are rejected by this server. If it is \fB!invalid\fP then descriptors are accepted but marked in the directory as not valid, that is, not recommended.
1078 .B \fIHiddenServiceDirectory\fP/hostname 
1079 The <base32-encoded-fingerprint>.onion domain name for this hidden service.
1082 .B \fIHiddenServiceDirectory\fP/private_key 
1083 The private key for this hidden service.
1084 .SH SEE ALSO
1085 .BR privoxy (1),
1086 .BR tsocks (1),
1087 .BR torify (1)
1089 .BR https://www.torproject.org/
1091 .SH BUGS
1092 Plenty, probably. Tor is still in development. Please report them.
1093 .SH AUTHORS
1094 Roger Dingledine <arma@mit.edu>, Nick Mathewson <nickm@alum.mit.edu>.