tor.1.in 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293
  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: 5 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. (Default: 10 MB)
  69. .LP
  70. .TP
  71. \fBMaxAdvertisedBandwidth \fR\fIN\fR \fBbytes\fR|\fBKB\fR|\fBMB\fR|\fBGB\fR|\fBTB\fP
  72. If set, we will not advertise more than this amount of bandwidth for our
  73. BandwidthRate. Server operators who want to reduce the number of clients
  74. who ask to build circuits through them (since this is proportional to
  75. advertised bandwidth rate) can thus reduce the CPU demands on their
  76. server without impacting network performance.
  77. .LP
  78. .TP
  79. \fBRelayBandwidthRate \fR\fIN\fR \fBbytes\fR|\fBKB\fR|\fBMB\fR|\fBGB\fR|\fBTB\fP
  80. If defined, a separate token bucket limits the average incoming bandwidth
  81. usage for _relayed traffic_ on this node to the specified number of
  82. bytes per second, and the average outgoing bandwidth usage to that same
  83. value. Relayed traffic is currently defined as answers to directory
  84. requests, but that may change. (Default: 0)
  85. .LP
  86. .TP
  87. \fBRelayBandwidthBurst \fR\fIN\fR \fBbytes\fR|\fBKB\fR|\fBMB\fR|\fBGB\fR|\fBTB\fP
  88. Limit the maximum token bucket size (also known as the burst) for
  89. _relayed traffic_ to the
  90. given number of bytes in each direction. (Default: 0)
  91. .LP
  92. .TP
  93. \fBConnLimit \fR\fINUM\fP
  94. The minimum number of file descriptors that must be available to
  95. the Tor process before it will start. Tor will ask the OS for as
  96. many file descriptors as the OS will allow (you can find this
  97. by "ulimit -H -n"). If this number is less than ConnLimit, then
  98. Tor will refuse to start.
  99. You probably don't need to adjust this. It has no effect on
  100. Windows since that platform lacks getrlimit(). (Default: 1000)
  101. .LP
  102. .TP
  103. \fBConstrainedSockets \fR\fB0\fR|\fB1\fR\fP
  104. If set, Tor will tell the kernel to attempt to shrink the buffers for all
  105. sockets to the size specified in \fBConstrainedSockSize\fP. This is useful
  106. for virtual servers and other environments where system level TCP
  107. buffers may be limited. If you're on a virtual server, and you
  108. encounter the "Error creating network
  109. socket: No buffer space available" message, you are likely experiencing
  110. this problem.
  111. The preferred solution is to have the admin increase the buffer pool for
  112. the host itself via /proc/sys/net/ipv4/tcp_mem or equivalent facility; this
  113. configuration option is a second-resort.
  114. The DirPort option should also not be used if TCP buffers are scarce. The
  115. cached directory requests consume additional sockets which exacerbates the
  116. problem.
  117. You should \fBnot\fP enable this feature unless you encounter the "no buffer
  118. space available" issue. Reducing the TCP buffers affects window size for
  119. the TCP stream and will reduce throughput in proportion to round trip
  120. time on long paths. (Default: 0.)
  121. .LP
  122. .TP
  123. \fBConstrainedSockSize \fR\fIN\fR \fBbytes\fR|\fBKB\fP
  124. When \fBConstrainedSockets\fP is enabled the receive and transmit buffers for
  125. all sockets will be set to this limit. Must be a value between 2048
  126. and 262144, in 1024 byte increments. Default of 8192 is recommended.
  127. .LP
  128. .TP
  129. \fBControlPort \fR\fIPort\fP
  130. If set, Tor will accept connections on this port and allow those
  131. connections to control the Tor process using the Tor Control Protocol
  132. (described in control-spec.txt). Note: unless you also specify one of
  133. \fBHashedControlPassword\fP or \fBCookieAuthentication\fP, setting
  134. this option will cause Tor to allow any process on the local host to
  135. control it. This option is required for many Tor controllers; most use
  136. the value of 9051.
  137. .LP
  138. .TP
  139. \fBControlListenAddress \fR\fIIP\fR[:\fIPORT\fR]\fP
  140. Bind the controller listener to this address. If you specify a port,
  141. bind to this port rather than the one specified in ControlPort. We
  142. strongly recommend that you leave this alone unless you know what you're
  143. doing, since giving attackers access to your control listener is really
  144. dangerous. (Default: 127.0.0.1)
  145. This directive can be specified multiple times to bind to multiple
  146. addresses/ports.
  147. .LP
  148. .TP
  149. \fBControlSocket \fR\fIPath\fP
  150. Like ControlPort, but listens on a Unix domain socket, rather than a TCP
  151. socket. (Unix and Unix-like systems only.)
  152. .LP
  153. .TP
  154. \fBHashedControlPassword \fR\fIhashed_password\fP
  155. Don't allow any connections on the control port except when the other process
  156. knows the password whose one-way hash is \fIhashed_password\fP. You can
  157. compute the hash of a password by running "tor --hash-password
  158. \fIpassword\fP".
  159. .LP
  160. .TP
  161. \fBCookieAuthentication \fR\fB0\fR|\fB1\fP
  162. If this option is set to 1, don't allow any connections on the control port
  163. except when the connecting process knows the contents of a file named
  164. "control_auth_cookie", which Tor will create in its data directory. This
  165. authentication method should only be used on systems with good filesystem
  166. security. (Default: 0)
  167. .LP
  168. .TP
  169. \fBCookieAuthFile \fR\fIPath\fP
  170. If set, this option overrides the default location and file name for Tor's
  171. cookie file. (See CookieAuthentication above.)
  172. .LP
  173. .TP
  174. \fBCookieAuthFileGroupReadable \fR\fB0\fR|\fB1\fR|\fIGroupName\fP
  175. If this option is set to 0, don't allow the filesystem group to read
  176. the cookie file. If the option is set to 1, make the cookie file
  177. readable by the default GID. [Making the file readable by other
  178. groups is not yet implemented; let us know if you need this for some
  179. reason.] (Default: 0).
  180. .LP
  181. .TP
  182. \fBDataDirectory \fR\fIDIR\fP
  183. Store working data in DIR (Default: @LOCALSTATEDIR@/lib/tor)
  184. .LP
  185. .TP
  186. \fBDirServer \fR[\fInickname\fR] [\fBflags\fR] \fIaddress\fR\fB:\fIport fingerprint\fP
  187. Use a nonstandard authoritative directory server at the provided
  188. address and port, with the specified key fingerprint. This option can
  189. be repeated many times, for multiple authoritative directory
  190. servers. Flags are separated by spaces, and determine what kind of an
  191. authority this directory is. By default, every authority is authoritative
  192. 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
  193. authority for old-style (v1) directories as well. (Only directory mirrors
  194. care about this.) Tor will use this server as an authority for hidden
  195. service information if the "hs" flag is set, or if the "v1" flag is set and
  196. the "no-hs" flag is \fBnot\fP set. Tor will use this authority as a bridge
  197. authoritative directory if the "bridge" flag is set. Lastly, if a flag
  198. "orport=\fBport\fR" is given, Tor will use the given port when opening
  199. encrypted tunnels to the dirserver.
  200. [XXX020 also mention v3ident= flag here]
  201. If no \fBdirserver\fP line is given, Tor will use the default
  202. directory servers. NOTE: this option is intended
  203. for setting up a private Tor network with its own directory authorities. If
  204. you use it, you will be distinguishable from other users, because you won't
  205. believe the same authorities they do.
  206. .LP
  207. .TP
  208. \fBFetchHidServDescriptors \fR\fB0\fR|\fB1\fR\fP
  209. If set to 0, Tor will never fetch any hidden service descriptors from
  210. the rendezvous directories. This option is only useful if you're using
  211. a Tor controller that handles hidserv fetches for you.
  212. (Default: 1)
  213. .LP
  214. .TP
  215. \fBFetchServerDescriptors \fR\fB0\fR|\fB1\fR\fP
  216. If set to 0, Tor will never fetch any network status summaries or server
  217. descriptors from the directory servers. This option is only useful if
  218. you're using a Tor controller that handles directory fetches for you.
  219. (Default: 1)
  220. .LP
  221. .TP
  222. \fBFetchUselessDescriptors \fR\fB0\fR|\fB1\fR\fP
  223. If set to 1, Tor will fetch every non-obsolete descriptor from the
  224. authorities that it hears about. Otherwise, it will avoid fetching
  225. useless descriptors, for example for routers that are not running.
  226. This option is useful if you're using the contributed "exitlist"
  227. script to enumerate Tor nodes that exit to certain addresses.
  228. (Default: 0)
  229. .LP
  230. .TP
  231. \fBGroup \fR\fIGID\fP
  232. On startup, setgid to this group.
  233. .LP
  234. .TP
  235. \fBHttpProxy\fR \fIhost\fR[:\fIport\fR]\fP
  236. Tor will make all its directory requests through this host:port
  237. (or host:80 if port is not specified),
  238. rather than connecting directly to any directory servers.
  239. .LP
  240. .TP
  241. \fBHttpProxyAuthenticator\fR \fIusername:password\fP
  242. If defined, Tor will use this username:password for Basic Http proxy
  243. authentication, as in RFC 2617. This is currently the only form of
  244. Http proxy authentication that Tor supports; feel free to submit a
  245. patch if you want it to support others.
  246. .LP
  247. .TP
  248. \fBHttpsProxy\fR \fIhost\fR[:\fIport\fR]\fP
  249. Tor will make all its OR (SSL) connections through this host:port
  250. (or host:443 if port is not specified), via HTTP CONNECT rather than
  251. connecting directly to servers. You may want to set \fBFascistFirewall\fR
  252. to restrict the set of ports you might try to connect to, if your Https
  253. proxy only allows connecting to certain ports.
  254. .LP
  255. .TP
  256. \fBHttpsProxyAuthenticator\fR \fIusername:password\fP
  257. If defined, Tor will use this username:password for Basic Https proxy
  258. authentication, as in RFC 2617. This is currently the only form of
  259. Https proxy authentication that Tor supports; feel free to submit a
  260. patch if you want it to support others.
  261. .LP
  262. .TP
  263. \fBKeepalivePeriod \fR\fINUM\fP
  264. To keep firewalls from expiring connections, send a padding keepalive
  265. cell every NUM seconds on open connections that are in use. If the
  266. connection has no open circuits, it will instead be closed after NUM
  267. seconds of idleness. (Default: 5 minutes)
  268. .LP
  269. .TP
  270. \fBLog \fR\fIminSeverity\fR[-\fImaxSeverity\fR] \fBstderr\fR|\fBstdout\fR|\fBsyslog\fR\fP
  271. Send all messages between \fIminSeverity\fR and \fImaxSeverity\fR to
  272. the standard output stream, the standard error stream, or to the system
  273. log. (The "syslog" value is only supported on Unix.) Recognized
  274. severity levels are debug, info, notice, warn, and err. We advise using
  275. "notice" in most cases, since anything more verbose may provide sensitive
  276. information to an attacker who obtains the logs. If only one
  277. severity level is given, all messages of that level or higher will be
  278. sent to the listed destination.
  279. .LP
  280. .TP
  281. \fBLog \fR\fIminSeverity\fR[-\fImaxSeverity\fR] \fBfile\fR \fIFILENAME\fP
  282. As above, but send log messages to the listed filename. The "Log"
  283. option may appear more than once in a configuration file. Messages
  284. are sent to all the logs that match their severity level.
  285. .LP
  286. .TP
  287. \fBOutboundBindAddress \fR\fIIP\fP
  288. Make all outbound connections originate from the IP address specified. This
  289. is only useful when you have multiple network interfaces, and you want all
  290. of Tor's outgoing connections to use a single one.
  291. .LP
  292. .TP
  293. \fBPidFile \fR\fIFILE\fP
  294. On startup, write our PID to FILE. On clean shutdown, remove FILE.
  295. .LP
  296. .TP
  297. \fBProtocolWarnings \fR\fB0\fR|\fB1\fR\fP
  298. If 1, Tor will log with severity 'warn' various cases of other parties
  299. not following the Tor specification. Otherwise, they are logged with
  300. severity 'info'. (Default: 0)
  301. .LP
  302. .TP
  303. \fBRunAsDaemon \fR\fB0\fR|\fB1\fR\fP
  304. If 1, Tor forks and daemonizes to the background. This option has
  305. no effect on Windows; instead you should use the --service command-line
  306. option. (Default: 0)
  307. .LP
  308. .TP
  309. \fBSafeLogging \fR\fB0\fR|\fB1\fP
  310. If 1, Tor replaces potentially sensitive strings in the logs
  311. (e.g. addresses) with the string [scrubbed]. This way logs can still be
  312. useful, but they don't leave behind personally identifying information
  313. about what sites a user might have visited. (Default: 1)
  314. .LP
  315. .TP
  316. \fBUser \fR\fIUID\fP
  317. On startup, setuid to this user.
  318. .LP
  319. .TP
  320. \fBHardwareAccel \fR\fB0\fR|\fB1\fP
  321. If non-zero, try to use crypto hardware acceleration when
  322. available. This is untested and probably buggy. (Default: 0)
  323. .LP
  324. .TP
  325. \fBAvoidDiskWrites \fR\fB0\fR|\fB1\fP
  326. If non-zero, try to write to disk less frequently than we would otherwise.
  327. This is useful when running on flash memory or other media that support only
  328. a limited number of writes. (Default: 0)
  329. .LP
  330. .TP
  331. \fBTunnelDirConns \fR\fB0\fR|\fB1\fP
  332. If non-zero, when a directory server we contact supports it, we will
  333. build a one-hop circuit and make an encrypted connection via its
  334. ORPort. (Default: 0)
  335. .LP
  336. .TP
  337. \fBPreferTunneledDirConns \fR\fB0\fR|\fB1\fP
  338. If non-zero, we will avoid directory servers that don't support tunneled
  339. directory connections, when possible. (Default: 0)
  340. .SH CLIENT OPTIONS
  341. .PP
  342. The following options are useful only for clients (that is, if \fBSocksPort\fP is non-zero):
  343. .LP
  344. .TP
  345. \fBAllowInvalidNodes\fR \fBentry\fR|\fBexit\fR|\fBmiddle\fR|\fBintroduction\fR|\fBrendezvous\fR|...\fP
  346. If some Tor servers are obviously not working right, the directory
  347. authorities can manually mark them as invalid, meaning that it's not
  348. recommended you use them for entry or exit positions in your circuits. You
  349. can opt to use them in some circuit positions, though. The default is
  350. "middle,rendezvous", and other choices are not advised.
  351. .LP
  352. .TP
  353. \fBBridge \fR\fIIP:ORPort\fR [fingerprint]\fP
  354. When set along with UseBridges, instructs Tor to use the relay at
  355. "IP:ORPort" as a "bridge" relaying into the Tor network. If "fingerprint"
  356. is provided (using the same format as for DirServer), we will verify that
  357. the relay running at that location has the right fingerprint. We also use
  358. fingerprint to look up the bridge descriptor at the bridge authority, if
  359. it's provided and if UpdateBridgesFromAuthority is set too.
  360. .LP
  361. .TP
  362. \fBCircuitBuildTimeout \fR\fINUM\fP
  363. Try for at most NUM seconds when building circuits. If the circuit
  364. isn't open in that time, give up on it.
  365. (Default: 1 minute.)
  366. .LP
  367. .TP
  368. \fBCircuitIdleTimeout \fR\fINUM\fP
  369. If we have kept a clean (never used) circuit around for NUM seconds,
  370. then close it. This way when the Tor client is entirely idle, it can
  371. expire all of its circuits, and then expire its TLS connections. Also,
  372. if we end up making a circuit that is not useful for exiting any of
  373. the requests we're receiving, it won't forever take up a slot in the
  374. circuit list.
  375. (Default: 1 hour.)
  376. .LP
  377. .TP
  378. \fBClientOnly \fR\fB0\fR|\fB1\fR\fP
  379. If set to 1, Tor will under no circumstances run as a server. The default
  380. is to run as a client unless ORPort is configured. (Usually,
  381. you don't need to set this; Tor is pretty smart at figuring out whether
  382. you are reliable and high-bandwidth enough to be a useful server.)
  383. (Default: 0)
  384. .LP
  385. .TP
  386. \fBExcludeNodes \fR\fInode\fR,\fInode\fR,\fI...\fP
  387. A list of identity fingerprints or nicknames of nodes to never use when
  388. building a circuit.
  389. .LP
  390. .TP
  391. \fBEntryNodes \fR\fInode\fR,\fInode\fR,\fI...\fP
  392. A list of identity fingerprints or nicknames of preferred nodes to use for the
  393. first hop in the circuit.
  394. These are treated only as preferences unless StrictEntryNodes (see
  395. below) is also set.
  396. .LP
  397. .TP
  398. \fBExitNodes \fR\fInode\fR,\fInode\fR,\fI...\fP
  399. A list of identity fingerprints or nicknames of preferred nodes to use for the
  400. last hop in the circuit.
  401. These are treated only as preferences unless StrictExitNodes (see
  402. below) is also set.
  403. .LP
  404. .TP
  405. \fBStrictEntryNodes \fR\fB0\fR|\fB1\fR\fP
  406. If 1, Tor will never use any nodes besides those listed in "EntryNodes" for
  407. the first hop of a circuit.
  408. .LP
  409. .TP
  410. \fBStrictExitNodes \fR\fB0\fR|\fB1\fR\fP
  411. If 1, Tor will never use any nodes besides those listed in "ExitNodes" for
  412. the last hop of a circuit.
  413. .LP
  414. .TP
  415. \fBFascistFirewall \fR\fB0\fR|\fB1\fR\fP
  416. If 1, Tor will only create outgoing connections to ORs running on ports that
  417. your firewall allows (defaults to 80 and 443; see \fBFirewallPorts\fR). This will
  418. allow you to run Tor as a client behind a firewall with restrictive policies,
  419. but will not allow you to run as a server behind such a firewall.
  420. If you prefer more fine-grained control, use ReachableAddresses instead.
  421. .LP
  422. .TP
  423. \fBFirewallPorts \fR\fIPORTS\fP
  424. A list of ports that your firewall allows you to connect to. Only
  425. used when \fBFascistFirewall\fR is set. This option is deprecated; use
  426. ReachableAddresses instead. (Default: 80, 443)
  427. .LP
  428. .TP
  429. \fBReachableAddresses \fR\fIADDR\fP[\fB/\fP\fIMASK\fP][:\fIPORT\fP]...\fP
  430. A comma-separated list of IP addresses and ports that your firewall allows you
  431. to connect to. The format is as
  432. for the addresses in ExitPolicy, except that "accept" is understood
  433. unless "reject" is explicitly provided. For example, 'ReachableAddresses
  434. 99.0.0.0/8, reject 18.0.0.0/8:80, accept *:80' means that your
  435. firewall allows connections to everything inside net 99, rejects port
  436. 80 connections to net 18, and accepts connections to port 80 otherwise.
  437. (Default: 'accept *:*'.)
  438. .LP
  439. .TP
  440. \fBReachableDirAddresses \fR\fIADDR\fP[\fB/\fP\fIMASK\fP][:\fIPORT\fP]...\fP
  441. Like \fBReachableAddresses\fP, a list of addresses and ports. Tor will obey
  442. these restrictions when fetching directory information, using standard HTTP
  443. GET requests. If not set explicitly then the value of \fBReachableAddresses\fP
  444. is used. If \fBHttpProxy\fR is set then these connections will go through that
  445. proxy.
  446. .LP
  447. .TP
  448. \fBReachableORAddresses \fR\fIADDR\fP[\fB/\fP\fIMASK\fP][:\fIPORT\fP]...\fP
  449. Like \fBReachableAddresses\fP, a list of addresses and ports. Tor will obey
  450. these restrictions when connecting to Onion Routers, using TLS/SSL. If not set
  451. explicitly then the value of \fBReachableAddresses\fP is used. If
  452. \fBHttpsProxy\fR is set then these connections will go through that proxy.
  453. The separation between \fBReachableORAddresses\fP and
  454. \fBReachableDirAddresses\fP is only interesting when you are connecting through
  455. proxies (see \fBHttpProxy\fR and \fBHttpsProxy\fR). Most proxies limit TLS
  456. connections (which Tor uses to connect to Onion Routers) to port 443, and some
  457. limit HTTP GET requests (which Tor uses for fetching directory information) to
  458. port 80.
  459. .LP
  460. .TP
  461. \fBLongLivedPorts \fR\fIPORTS\fP
  462. A list of ports for services that tend to have long-running connections
  463. (e.g. chat and interactive shells). Circuits for streams that use these
  464. ports will contain only high-uptime nodes, to reduce the chance that a
  465. node will go down before the stream is finished.
  466. (Default: 21, 22, 706, 1863, 5050, 5190, 5222, 5223, 6667, 6697, 8300)
  467. .LP
  468. .TP
  469. \fBMapAddress\fR \fIaddress\fR \fInewaddress\fR
  470. When a request for address arrives to Tor, it will rewrite it to
  471. newaddress before processing it. For example, if you always want
  472. connections to www.indymedia.org to exit via \fItorserver\fR (where
  473. \fItorserver\fR is the nickname of the server),
  474. use "MapAddress www.indymedia.org www.indymedia.org.torserver.exit".
  475. .LP
  476. .TP
  477. \fBNewCircuitPeriod \fR\fINUM\fP
  478. Every NUM seconds consider whether to build a new circuit. (Default: 30 seconds)
  479. .LP
  480. .TP
  481. \fBMaxCircuitDirtiness \fR\fINUM\fP
  482. Feel free to reuse a circuit that was first used at most NUM seconds ago,
  483. but never attach a new stream to a circuit that is too old.
  484. (Default: 10 minutes)
  485. .LP
  486. .TP
  487. \fBNodeFamily \fR\fInode\fR,\fInode\fR,\fI...\fP
  488. The Tor servers, defined by their identity fingerprints or nicknames,
  489. constitute a "family" of similar or co-administered
  490. servers, so never use any two of them in the same circuit. Defining a
  491. NodeFamily is only needed when a server doesn't list the family itself
  492. (with MyFamily). This option can be used multiple times.
  493. .LP
  494. .TP
  495. \fBEnforceDistinctSubnets \fR\fB0\fR|\fB1\fR\fP
  496. If 1, Tor will not put two servers whose IP addresses are "too
  497. close" on the same circuit. Currently, two addresses are
  498. "too close" if they lie in the same /16 range. (Default: 1)
  499. .\" \fBPathlenCoinWeight \fR\fI0.0-1.0\fP
  500. .\" Paths are 3 hops plus a geometric distribution centered around this coinweight.
  501. .\" Must be >=0.0 and <1.0. (Default: 0.3) NOT USED CURRENTLY
  502. .\" .TP
  503. .LP
  504. .TP
  505. \fBRendNodes \fR\fInode\fR,\fInode\fR,\fI...\fP
  506. A list of identity fingerprints or nicknames of preferred nodes to use for the
  507. rendezvous point, if possible.
  508. .LP
  509. .TP
  510. \fBRendExcludeNodes \fR\fInode\fR,\fInode\fR,\fI...\fP
  511. A list of identity fingerprints or nicknames of nodes to never use when
  512. choosing a rendezvous point.
  513. .LP
  514. .TP
  515. \fBSocksPort \fR\fIPORT\fP
  516. Advertise this port to listen for connections from Socks-speaking
  517. applications. Set this to 0 if you don't want to allow application
  518. connections. (Default: 9050)
  519. .LP
  520. .TP
  521. \fBSocksListenAddress \fR\fIIP\fR[:\fIPORT\fR]\fP
  522. Bind to this address to listen for connections from Socks-speaking
  523. applications. (Default: 127.0.0.1) You can also specify a port
  524. (e.g. 192.168.0.1:9100).
  525. This directive can be specified multiple times to bind to multiple
  526. addresses/ports.
  527. .LP
  528. .TP
  529. \fBSocksPolicy \fR\fIpolicy\fR,\fIpolicy\fR,\fI...\fP
  530. Set an entrance policy for this server, to limit who can connect to the
  531. SocksPort and DNSPort ports.
  532. The policies have the same form as exit policies below.
  533. .LP
  534. .TP
  535. \fBSocksTimeout \fR\fINUM\fP
  536. Let a socks connection wait NUM seconds handshaking, and NUM seconds
  537. unattached waiting for an appropriate circuit, before we fail it.
  538. (Default: 2 minutes.)
  539. .LP
  540. .TP
  541. \fBTestVia \fR\fInode\fR,\fInode\fR,\fI...\fP
  542. A list of identity fingerprints or nicknames of nodes to prefer for your middle
  543. hop when building testing circuits. This option is mainly for debugging
  544. reachability problems.
  545. .LP
  546. .TP
  547. \fBTrackHostExits \fR\fIhost\fR,\fI.domain\fR,\fI...\fR\fP
  548. For each value in the comma separated list, Tor will track recent connections
  549. to hosts that match this value and attempt to
  550. reuse the same exit node for each. If the value is prepended with a '.', it is
  551. treated as matching an entire domain. If one of the values is just a '.', it
  552. means match everything. This option is useful if you frequently connect to
  553. sites that will expire all your authentication cookies (ie log you out) if
  554. your IP address changes. Note that this option does have the disadvantage of
  555. making it more clear that a given history is
  556. associated with a single user. However, most people who would wish to observe
  557. this will observe it through cookies or other protocol-specific means anyhow.
  558. .LP
  559. .TP
  560. \fBTrackHostExitsExpire \fR\fINUM\fP
  561. Since exit servers go up and down, it is desirable to expire the association
  562. between host and exit server after NUM seconds. The default
  563. is 1800 seconds (30 minutes).
  564. .LP
  565. .TP
  566. \fBUpdateBridgesFromAuthority \fR\fB0\fR|\fB1\fR\fP
  567. When set (along with UseBridges), Tor will try to fetch bridge descriptors
  568. from the configured bridge authorities when feasible. It will fall back
  569. to a direct request if the authority responds with a 404. (Default: 0)
  570. .LP
  571. .TP
  572. \fBUseBridges \fR\fB0\fR|\fB1\fR\fP
  573. When set, Tor will fetch descriptors for each bridge listed in the
  574. "Bridge" config lines, and use these relays as both entry guards and
  575. directory guards. (Default: 0)
  576. .LP
  577. .TP
  578. \fBUseEntryGuards \fR\fB0\fR|\fB1\fR\fP
  579. If this option is set to 1, we pick a few long-term entry servers, and
  580. try to stick with them. This is desirable because
  581. constantly changing servers increases the odds that an adversary who owns
  582. some servers will observe a fraction of your paths.
  583. (Defaults to 1.)
  584. .LP
  585. .TP
  586. \fBNumEntryGuards \fR\fINUM\fP
  587. If UseEntryGuards is set to 1, we will try to pick a total of NUM routers
  588. as long-term entries for our circuits.
  589. (Defaults to 3.)
  590. .LP
  591. .TP
  592. \fBSafeSocks \fR\fB0\fR|\fB1\fR\fP
  593. When this option is enabled, Tor will reject application connections that
  594. use unsafe variants of the socks protocol -- ones that only provide an
  595. IP address, meaning the application is doing a DNS resolve first.
  596. Specifically, these are socks4 and socks5 when not doing remote DNS.
  597. (Defaults to 0.)
  598. .LP
  599. .TP
  600. \fBTestSocks \fR\fB0\fR|\fB1\fR\fP
  601. When this option is enabled, Tor will make a notice-level log entry for
  602. each connection to the Socks port indicating whether the request used
  603. a safe socks protocol or an unsafe one (see above entry on SafeSocks).
  604. This helps to determine whether an application using Tor is possibly
  605. leaking DNS requests.
  606. (Default: 0)
  607. .LP
  608. .TP
  609. \fBVirtualAddrNetwork \fR\fIAddress\fB/\fIbits\fP
  610. When a controller asks for a virtual (unused) address with the
  611. MAPADDRESS command, Tor picks an unassigned address from this range.
  612. (Default: 127.192.0.0/10)
  613. When providing proxy server service to a network of computers using a tool like
  614. dns-proxy-tor,
  615. change this address to "10.192.0.0/10" or "172.16.0.0/12".
  616. The default \fBVirtualAddrNetwork\fP address range on a
  617. properly configured machine will route to the loopback interface.
  618. For local use, no change to the
  619. default \fBVirtualAddrNetwork\fP setting is needed.
  620. .LP
  621. .TP
  622. \fBAllowNonRFC953Hostnames \fR\fB0\fR|\fB1\fR\fP
  623. When this option is disabled, Tor blocks hostnames containing illegal
  624. characters (like @ and :) rather than sending them to an exit node to be
  625. resolved. This helps trap accidental attempts to resolve URLs and so on.
  626. (Default: 0)
  627. .LP
  628. .TP
  629. \fBFastFirstHopPK \fR\fB0\fR|\fB1\fR\fP
  630. When this option is enabled and we aren't running as a server, Tor
  631. skips the public key step for the first hop of creating circuits. This is
  632. safe since we have already used TLS to authenticate the server and to
  633. establish forward-secure keys. Turning this option off makes circuit
  634. building slower.
  635. (Default: 1)
  636. .LP
  637. .TP
  638. \fBTransPort\fP \fR\fIPORT\fP
  639. If non-zero, enables transparent proxy support on \fR\fIPORT\fP (by
  640. convention, 9040).
  641. .\" This is required to enable support for \fBdns-proxy-tor\fP.
  642. .\" ControlPort must be set when using \fBTransPort\fP.
  643. Requires OS support for transparent proxies, such as BSDs' pf or
  644. Linux's IPTables.
  645. If you're planning
  646. to use Tor as a transparent proxy for a network, you'll want to examine
  647. and change VirtualAddrNetwork from the default setting. You'll also want
  648. to set the TransListenAddress option for the network you'd like to proxy.
  649. (Default: 0).
  650. .LP
  651. .TP
  652. \fBTransListenAddress\fP \fR\fIIP\fR[:\fIPORT\fR]\fP
  653. Bind to this address to listen for transparent proxy connections.
  654. (Default: 127.0.0.1).
  655. This is useful for exporting a transparent proxy server
  656. to an entire network.
  657. .LP
  658. .TP
  659. \fBNATDPort\fP \fR\fIPORT\fP
  660. Allow old versions of ipfw (as included in old versions of FreeBSD,
  661. etc.) to send connections through Tor using the NATD protocol.
  662. This option is only for people who cannot
  663. use TransPort.
  664. .LP
  665. .TP
  666. \fBNATDListenAddress\fP \fR\fIIP\fR[:\fIPORT\fR]\fP
  667. Bind to this address to listen for NATD connections.
  668. (Default: 127.0.0.1).
  669. .LP
  670. .TP
  671. \fBAutomapHostsOnResolve\fP \fR\fB0\fR|\fB1\fR\fP
  672. When this option is enabled, and we get a request to resolve an
  673. address that ends with one of the suffixes in
  674. \fBAutomapHostsSuffixes\fP, we map an unused virtual address to that
  675. address, and return the new virtual address. This is handy for making
  676. .onion addresses work with applications that resolve an address and
  677. then connect to it.
  678. (Default: 0).
  679. .LP
  680. .TP
  681. \fBAutomapHostsSuffixes\fP \fR\fISUFFIX\fR,\fISUFFIX\fR,...\fP
  682. A comma-separated list of suffixes to use with \fBAutomapHostsOnResolve\fP.
  683. The "." suffix is equivalent to "all addresses."
  684. (Default: .exit,.onion).
  685. .LP
  686. .TP
  687. \fBDNSPort\fP \fR\fIPORT\fP
  688. If non-zero, Tor listens for UDP DNS requests on this port and resolves them
  689. anonymously.
  690. (Default: 0).
  691. .LP
  692. .TP
  693. \fBDNSListenAddress\fP \fR\fIIP\fR[:\fIPORT\fR]\fP
  694. Bind to this address to listen for DNS connections.
  695. (Default: 127.0.0.1).
  696. .LP
  697. .TP
  698. \fBClientDNSRejectInternalAddresses\fP \fR\fB0\fR|\fB1\fR\fP
  699. If true, Tor does not believe any anonymously retrieved DNS answer that tells
  700. it that an address resolves to an internal address (like 127.0.0.1 or
  701. 192.168.0.1). This option prevents certain browser-based attacks; don't turn
  702. it off unless you know what you're doing. (Default: 1).
  703. .LP
  704. .TP
  705. \fBDownloadExtraInfo\fP \fR\fB0\fR|\fB1\fR\fP
  706. If true, Tor downloads and caches "extra-info" documents. These
  707. documents contain information about servers other than the information
  708. in their regular router descriptors. Tor does not use this information for
  709. anything itself; to save bandwidth, leave this option turned off.
  710. (Default: 0).
  711. .LP
  712. .TP
  713. .SH SERVER OPTIONS
  714. .PP
  715. The following options are useful only for servers (that is, if \fBORPort\fP is non-zero):
  716. .LP
  717. .TP
  718. \fBAddress \fR\fIaddress\fP
  719. The IP address or fqdn of this server (e.g. moria.mit.edu). You can
  720. leave this unset, and Tor will guess your IP address.
  721. .LP
  722. .TP
  723. \fBAssumeReachable \fR\fB0\fR|\fB1\fR\fP
  724. This option is used when bootstrapping a new Tor network. If set to 1,
  725. don't do self-reachability testing; just upload your server descriptor
  726. immediately. If \fBAuthoritativeDirectory\fP is also set, this option
  727. instructs the dirserver to bypass remote reachability testing too and
  728. list all connected servers as running.
  729. .LP
  730. .TP
  731. \fBBridgeRelay \fR\fB0\fR|\fB1\fR\fP
  732. Sets the relay to act as a "bridge" with respect to relaying connections
  733. from bridge users to the Tor network. Mainly it influences how the relay
  734. will cache and serve directory information. Usually used in combination
  735. with PublishServerDescriptor.
  736. .LP
  737. .TP
  738. \fBContactInfo \fR\fIemail_address\fP
  739. Administrative contact information for server. This line might get
  740. picked up by spam harvesters, so you may want to obscure the fact
  741. that it's an email address.
  742. .LP
  743. .TP
  744. \fBExitPolicy \fR\fIpolicy\fR,\fIpolicy\fR,\fI...\fP
  745. Set an exit policy for this server. Each policy is of the form
  746. "\fBaccept\fP|\fBreject\fP \fIADDR\fP[\fB/\fP\fIMASK\fP]\fB[:\fP\fIPORT\fP]".
  747. If \fB/\fP\fIMASK\fP is omitted then this policy just applies to the host
  748. given. Instead of giving a host or network you can also use "\fB*\fP" to
  749. denote the universe (0.0.0.0/0). \fIPORT\fP can be a single port number,
  750. an interval of ports "\fIFROM_PORT\fP\fB-\fP\fITO_PORT\fP", or "\fB*\fP".
  751. If \fIPORT\fP is omitted, that means "\fB*\fP".
  752. For example, "accept 18.7.22.69:*,reject 18.0.0.0/8:*,accept *:*" would
  753. reject any traffic destined for MIT except for web.mit.edu, and
  754. accept anything else.
  755. To specify all internal and link-local networks (including 0.0.0.0/8,
  756. 169.254.0.0/16, 127.0.0.0/8, 192.168.0.0/16, 10.0.0.0/8, and
  757. 172.16.0.0/12), you can use the "private" alias instead of an address.
  758. These addresses are rejected by default (at the beginning of your
  759. exit policy), along with your public IP address, unless you set the
  760. ExitPolicyRejectPrivate config option
  761. to 0. For example, once you've done that, you could allow HTTP to
  762. 127.0.0.1 and block all other connections to internal networks with
  763. "accept 127.0.0.1:80,reject private:*", though that may also allow
  764. connections to your own computer that are addressed to its public
  765. (external) IP address. See RFC 1918 and RFC 3330 for more
  766. details about internal and reserved IP address space.
  767. This directive can be specified multiple times so you don't have to put
  768. it all on one line.
  769. Policies are considered first to last, and the first match wins. If
  770. you want to _replace_ the default exit policy, end your exit policy with
  771. either a reject *:* or an accept *:*. Otherwise, you're _augmenting_
  772. (prepending to) the default exit policy. The default exit policy is:
  773. .PD 0
  774. .RS 12
  775. .IP "reject *:25"
  776. .IP "reject *:119"
  777. .IP "reject *:135-139"
  778. .IP "reject *:445"
  779. .IP "reject *:465"
  780. .IP "reject *:563"
  781. .IP "reject *:587"
  782. .IP "reject *:1214"
  783. .IP "reject *:4661-4666"
  784. .IP "reject *:6346-6429"
  785. .IP "reject *:6699"
  786. .IP "reject *:6881-6999"
  787. .IP "accept *:*"
  788. .RE
  789. .PD
  790. .LP
  791. .TP
  792. \fBExitPolicyRejectPrivate \fR\fB0\fR|\fB1\fR\fP
  793. Reject all private (local) networks, along with your own public IP
  794. address, at the beginning of your exit
  795. policy. See above entry on ExitPolicy. (Default: 1)
  796. .LP
  797. .TP
  798. \fBMaxOnionsPending \fR\fINUM\fP
  799. If you have more than this number of onionskins queued for decrypt, reject new ones. (Default: 100)
  800. .LP
  801. .TP
  802. \fBMyFamily \fR\fInode\fR,\fInode\fR,\fI...\fP
  803. Declare that this Tor server is controlled or administered by a group
  804. or organization identical or similar to that of the other servers, defined by their identity fingerprints or nicknames.
  805. When two servers both declare that they are in the same 'family', Tor clients
  806. will not use them in the same circuit. (Each server only needs to list the
  807. other servers in its family; it doesn't need to list itself, but it won't hurt.)
  808. .LP
  809. .TP
  810. \fBNickname \fR\fIname\fP
  811. Set the server's nickname to 'name'. Nicknames must be between 1
  812. and 19 characters inclusive, and must contain only the characters
  813. [a-zA-Z0-9].
  814. .LP
  815. .TP
  816. \fBNumCPUs \fR\fInum\fP
  817. How many processes to use at once for decrypting onionskins. (Default: 1)
  818. .LP
  819. .TP
  820. \fBORPort \fR\fIPORT\fP
  821. Advertise this port to listen for connections from Tor clients and servers.
  822. .LP
  823. .TP
  824. \fBORListenAddress \fR\fIIP\fR[:\fIPORT\fR]\fP
  825. Bind to this IP address to listen for connections from Tor clients and
  826. servers. If you specify a port, bind to this port rather than the one
  827. specified in ORPort. (Default: 0.0.0.0)
  828. This directive can be specified multiple times to bind to multiple
  829. addresses/ports.
  830. .LP
  831. .TP
  832. \fBPublishServerDescriptor \fR\fB0\fR|\fB1\fR|\fBv1\fR|\fBv2\fR|\fBv3\fR|\fBbridge\fR|\fBhidserv\fR, ...\fP
  833. This option is only considered if you have an ORPort defined. You can
  834. choose multiple arguments, separated by commas.
  835. If set to 0, Tor will act as a server but it will not publish its
  836. descriptor to the directory authorities. (This is useful if you're
  837. testing out your server, or if you're using a Tor controller that handles
  838. directory publishing for you.) Otherwise, Tor will publish its descriptor
  839. to all directory authorities of the type(s) specified. The value "1" is
  840. treated as a synonym for the default, which is currently "v1,v2".
  841. .LP
  842. .TP
  843. \fBRedirectExit \fR\fIpattern target\fP
  844. THIS OPTION IS DEPRECATED. It will go away in a future version of Tor.
  845. Whenever an outgoing connection tries to connect to one of a given set
  846. of addresses, connect to \fItarget\fP (an \fIaddress:port\fP pair) instead.
  847. The address
  848. pattern is given in the same format as for an exit policy. The
  849. address translation applies after exit policies are applied. Multiple
  850. \fBRedirectExit\fP options can be used: once any one has matched
  851. successfully, no subsequent rules are considered. You can specify that no
  852. redirection is to be performed on a given set of addresses by using the
  853. special target string "pass", which prevents subsequent rules from being
  854. considered.
  855. .LP
  856. .TP
  857. \fBShutdownWaitLength\fR \fINUM\fP
  858. When we get a SIGINT and we're a server, we begin shutting down: we close
  859. listeners and start refusing new circuits. After \fBNUM\fP seconds,
  860. we exit. If we get a second SIGINT, we exit immediately. (Default:
  861. 30 seconds)
  862. .LP
  863. .TP
  864. \fBAccountingMax \fR\fIN\fR \fBbytes\fR|\fBKB\fR|\fBMB\fR|\fBGB\fR|\fBTB\fP
  865. Never send more than the specified number of bytes in a given
  866. accounting period, or receive more than that number in the period.
  867. For example, with AccountingMax set to 1 GB, a server could send 900 MB
  868. and receive 800 MB and continue running. It will only hibernate once one
  869. of the two reaches 1 GB.
  870. When the number of bytes is exhausted, Tor will hibernate until some
  871. time in the next accounting period. To prevent all servers from
  872. waking at the same time, Tor will also wait until a random point in
  873. each period before waking up. If you have bandwidth cost issues,
  874. enabling hibernation is preferable to setting a low bandwidth, since it
  875. provides users with a collection of fast servers that are up some of
  876. the time, which is more useful than a set of slow servers that are
  877. always "available".
  878. .LP
  879. .TP
  880. \fBAccountingStart \fR\fBday\fR|\fBweek\fR|\fBmonth\fR [\fIday\fR] \fIHH:MM\fR\fP
  881. Specify how long accounting periods last. If \fBmonth\fP is given,
  882. each accounting period runs from the time \fIHH:MM\fR on the
  883. \fIday\fRth day of one month to the same day and time of the next.
  884. (The day must be between 1 and 28.) If \fBweek\fP is given, each
  885. accounting period runs from the time \fIHH:MM\fR of the \fIday\fRth
  886. day of one week to the same day and time of the next week, with Monday
  887. as day 1 and Sunday as day 7. If \fBday\fR is given, each accounting
  888. period runs from the time \fIHH:MM\fR each day to the same time on the
  889. next day. All times are local, and given in 24-hour time. (Defaults to
  890. "month 1 0:00".)
  891. .LP
  892. .TP
  893. \fBServerDNSResolvConfFile \fR\fIfilename\fP
  894. Overrides the default DNS configuration with the configuration in
  895. \fIfilename\fP. The file format is the same as the standard Unix
  896. "\fBresolv.conf\fP" file (7). This option, like all other
  897. ServerDNS options, only affects name lookups that your server does on
  898. behalf of clients. Also, it only takes effect if Tor was built with
  899. eventdns support. (Defaults to use the system DNS configuration.)
  900. .LP
  901. .TP
  902. \fBServerDNSSearchDomains \fR\fB0\fR|\fB1\fR\fP
  903. If set to \fB1\fP, then we will search for addresses in the local search
  904. domain. For example, if this system is configured to believe it is in
  905. "example.com", and a client tries to connect to "www", the client will be
  906. connected to "www.example.com".
  907. This option only affects name lookups that your server does on
  908. behalf of clients, and only takes effect if Tor was built with
  909. eventdns support.
  910. (Defaults to "0".)
  911. .LP
  912. .TP
  913. \fBServerDNSDetectHijacking \fR\fB0\fR|\fB1\fR\fP
  914. When this option is set to 1, we will test periodically to determine whether
  915. our local nameservers have been configured to hijack failing DNS requests
  916. (usually to an advertising site). If they are, we will attempt to correct
  917. this.
  918. This option only affects name lookups that your server does on
  919. behalf of clients, and only takes effect if Tor was built with
  920. eventdns support.
  921. (Defaults to "1".)
  922. .LP
  923. .TP
  924. \fBServerDNSTestAddresses \fR\fIaddress\fR,\fIaddress\fR,\fI...\fP
  925. When we're detecting DNS hijacking, make sure that these \fIvalid\fP
  926. addresses aren't getting redirected. If they are, then our DNS is
  927. completely useless, and we'll reset our exit policy to "reject *:*".
  928. This option only affects name lookups that your server does on
  929. behalf of clients, and only takes effect if Tor was built with
  930. eventdns support.
  931. (Defaults to "www.google.com, www.mit.edu, www.yahoo.com,
  932. www.slashdot.org".)
  933. .LP
  934. .TP
  935. \fBServerDNSAllowNonRFC953Hostnames \fR\fB0\fR|\fB1\fR\fP
  936. When this option is disabled, Tor does not try to resolve hostnames
  937. containing illegal characters (like @ and :) rather than sending them to an
  938. exit node to be resolved. This helps trap accidental attempts to resolve
  939. URLs and so on.
  940. This option only affects name lookups that your server does on
  941. behalf of clients, and only takes effect if Tor was built with
  942. eventdns support.
  943. (Default: 0)
  944. .SH DIRECTORY SERVER OPTIONS
  945. .PP
  946. The following options are useful only for directory servers (that is, if \fBDirPort\fP is non-zero):
  947. .LP
  948. .TP
  949. \fBAuthoritativeDirectory \fR\fB0\fR|\fB1\fR\fP
  950. When this option is set to 1, Tor operates as an authoritative
  951. directory server. Instead of caching the directory, it generates its
  952. own list of good servers, signs it, and sends that to the clients.
  953. Unless the clients already have you listed as a trusted directory, you
  954. probably do not want to set this option. Please coordinate with the other
  955. admins at tor-ops@freehaven.net if you think you should be a directory.
  956. .LP
  957. .TP
  958. \fBV1AuthoritativeDirectory \fR\fB0\fR|\fB1\fR\fP
  959. When this option is set in addition to \fBAuthoritativeDirectory\fP, Tor
  960. generates version 1 directory and running-routers documents (for legacy
  961. Tor clients up to 0.1.0.x).
  962. .LP
  963. .TP
  964. \fBV2AuthoritativeDirectory \fR\fB0\fR|\fB1\fR\fP
  965. When this option is set in addition to \fBAuthoritativeDirectory\fP, Tor
  966. generates version 2 network statuses and serves descriptors, etc as
  967. described in doc/spec/dir-spec.txt.
  968. .LP
  969. .TP
  970. \fBVersioningAuthoritativeDirectory \fR\fB0\fR|\fB1\fR\fP
  971. When this option is set to 1, Tor adds information on
  972. which versions of Tor are still believed safe for use to
  973. the published directory. Each version 1 authority is
  974. automatically a versioning authority; version 2 authorities
  975. provide this service optionally. See \fBRecommendedVersions\fP,
  976. \fBRecommendedClientVersions\fP, and \fBRecommendedServerVersions\fP.
  977. .LP
  978. .TP
  979. \fBNamingAuthoritativeDirectory \fR\fB0\fR|\fB1\fR\fP
  980. When this option is set to 1, then the server advertises that it has
  981. opinions about nickname-to-fingerprint bindings. It will include these
  982. opinions in its published network-status pages, by listing servers with
  983. the flag "Named" if a correct binding between that nickname and
  984. fingerprint has been registered with the dirserver. Naming dirservers
  985. will refuse to accept or publish descriptors that contradict a
  986. registered binding. See \fBapproved-routers\fP in the \fBFILES\fP
  987. section below.
  988. .LP
  989. .TP
  990. \fBHSAuthoritativeDir \fR\fB0\fR|\fB1\fR\fP
  991. When this option is set in addition to \fBAuthoritativeDirectory\fP, Tor also
  992. accepts and serves hidden service descriptors. (Default: 0)
  993. .LP
  994. .TP
  995. \fBHSAuthorityRecordStats \fR\fB0\fR|\fB1\fR\fP
  996. When this option is set in addition to \fBHSAuthoritativeDir\fP, Tor
  997. periodically (every 15 minutes) writes statistics about hidden service
  998. usage to a file \fBhsusage\fP in its data directory. (Default: 0)
  999. .LP
  1000. .TP
  1001. \fBHidServDirectoryV2 \fR\fB0\fR|\fB1\fR\fP
  1002. When this option is set, Tor accepts and serves v2 hidden service
  1003. descriptors. (Default: 0)
  1004. .LP
  1005. .TP
  1006. \fBBridgeAuthoritativeDir \fR\fB0\fR|\fB1\fR\fP
  1007. When this option is set in addition to \fBAuthoritativeDirectory\fP, Tor
  1008. accepts and serves router descriptors, but it caches and serves the main
  1009. networkstatus documents rather than generating its own. (Default: 0)
  1010. .LP
  1011. .TP
  1012. \fBDirPort \fR\fIPORT\fP
  1013. Advertise the directory service on this port.
  1014. .LP
  1015. .TP
  1016. \fBDirListenAddress \fR\fIIP\fR[:\fIPORT\fR]\fP
  1017. Bind the directory service to this address. If you specify a port, bind
  1018. to this port rather than the one specified in DirPort. (Default: 0.0.0.0)
  1019. This directive can be specified multiple times to bind to multiple
  1020. addresses/ports.
  1021. .LP
  1022. .TP
  1023. \fBDirPolicy \fR\fIpolicy\fR,\fIpolicy\fR,\fI...\fP
  1024. Set an entrance policy for this server, to limit who can connect to the
  1025. directory ports.
  1026. The policies have the same form as exit policies above.
  1027. .LP
  1028. .TP
  1029. \fBRecommendedVersions \fR\fISTRING\fP
  1030. STRING is a comma-separated list of Tor versions currently believed
  1031. to be safe. The list is included in each directory, and nodes which
  1032. pull down the directory learn whether they need to upgrade. This
  1033. option can appear multiple times: the values from multiple lines are
  1034. spliced together.
  1035. When this is set then
  1036. \fBVersioningAuthoritativeDirectory\fP should be set too.
  1037. .LP
  1038. .TP
  1039. \fBRecommendedClientVersions \fR\fISTRING\fP
  1040. STRING is a comma-separated list of Tor versions currently believed
  1041. to be safe for clients to use. This information is included in version 2
  1042. directories. If this is not set then the value of \fBRecommendedVersions\fR
  1043. is used.
  1044. When this is set then
  1045. \fBVersioningAuthoritativeDirectory\fP should be set too.
  1046. .LP
  1047. .TP
  1048. \fBRecommendedServerVersions \fR\fISTRING\fP
  1049. STRING is a comma-separated list of Tor versions currently believed
  1050. to be safe for servers to use. This information is included in version 2
  1051. directories. If this is not set then the value of \fBRecommendedVersions\fR
  1052. is used.
  1053. When this is set then
  1054. \fBVersioningAuthoritativeDirectory\fP should be set too.
  1055. .LP
  1056. .TP
  1057. \fBDirAllowPrivateAddresses \fR\fB0\fR|\fB1\fR\fP
  1058. If set to 1, Tor will accept router descriptors with arbitrary "Address"
  1059. elements. Otherwise, if the address is not an IP address or is a private
  1060. IP address, it will reject the router descriptor. Defaults to 0.
  1061. .LP
  1062. .TP
  1063. \fBAuthDirBadExit \fR\fIAddressPattern\fR...\fP
  1064. Authoritative directories only. A set of address patterns for servers that
  1065. will be listed as bad exits in any network status document this authority
  1066. publishes, if \fBAuthDirListBadExits\fR is set.
  1067. .LP
  1068. .TP
  1069. \fBAuthDirInvalid \fR\fIAddressPattern\fR...\fP
  1070. Authoritative directories only. A set of address patterns for servers that
  1071. will never be listed as "valid" in any network status document that this
  1072. authority publishes.
  1073. .LP
  1074. .TP
  1075. \fBAuthDirReject \fR\fIAddressPattern\fR...\fP
  1076. Authoritative directories only. A set of address patterns for servers that
  1077. will never be listed at all in any network status document that this
  1078. authority publishes, or accepted as an OR address in any descriptor submitted
  1079. for publication by this authority.
  1080. .LP
  1081. .TP
  1082. \fBAuthDirListBadExits \fR\fB0\fR|\fB1\fR\fP
  1083. Authoritative directories only. If set to 1, this directory has
  1084. some opinion about which nodes are unsuitable as exit nodes. (Do not
  1085. set this to 1 unless you plan to list nonfunctioning exits as bad;
  1086. otherwise, you are effectively voting in favor of every declared exit
  1087. as an exit.)
  1088. .LP
  1089. .TP
  1090. \fBAuthDirRejectUnlisted \fR\fB0\fR|\fB1\fR\fP
  1091. Authoritative directories only. If set to 1, the directory server
  1092. rejects all uploaded server descriptors that aren't explicitly listed
  1093. in the fingerprints file. This acts as a "panic button" if we get
  1094. Sybiled. (Default: 0)
  1095. .SH HIDDEN SERVICE OPTIONS
  1096. .PP
  1097. The following options are used to configure a hidden service.
  1098. .LP
  1099. .TP
  1100. \fBHiddenServiceDir \fR\fIDIRECTORY\fP
  1101. Store data files for a hidden service in DIRECTORY. Every hidden
  1102. service must have a separate directory. You may use this option multiple
  1103. times to specify multiple services.
  1104. .LP
  1105. .TP
  1106. \fBHiddenServicePort \fR\fIVIRTPORT \fR[\fITARGET\fR]\fP
  1107. Configure a virtual port VIRTPORT for a hidden service. You may use this
  1108. option multiple times; each time applies to the service using the most recent
  1109. hiddenservicedir. By default, this option maps the virtual port to the
  1110. same port on 127.0.0.1. You may override the target port, address, or both
  1111. by specifying a target of addr, port, or addr:port. You may also have
  1112. multiple lines with the same VIRTPORT: when a user connects to that VIRTPORT,
  1113. one of the TARGETs from those lines will be chosen at random.
  1114. .LP
  1115. .TP
  1116. \fBHiddenServiceNodes \fR\fInode\fR,\fInode\fR,\fI...\fP
  1117. If possible, use the specified nodes, defined by their identity fingerprints or
  1118. nicknames, as introduction points for the hidden service. If this is left
  1119. unset, Tor will be smart and pick some reasonable ones; most people can leave
  1120. this unset.
  1121. .LP
  1122. .TP
  1123. \fBHiddenServiceExcludeNodes \fR\fInode\fR,\fInode\fR,\fI...\fP
  1124. Do not use the specified nodes, defined by their identity fingerprints or
  1125. nicknames, as introduction points for the hidden service. In normal use there
  1126. is no reason to set this.
  1127. .LP
  1128. .TP
  1129. \fBPublishHidServDescriptors \fR\fB0\fR|\fB1\fR\fP
  1130. If set to 0, Tor will run any hidden services you configure, but it won't
  1131. advertise them to the rendezvous directory. This option is only useful
  1132. if you're using a Tor controller that handles hidserv publishing for you.
  1133. (Default: 1)
  1134. .LP
  1135. .TP
  1136. \fBHiddenServiceVersion \fR\fIversion\fR,\fIversion\fR,\fI...\fP
  1137. A list of rendezvous service descriptor versions to publish for the hidden
  1138. service. Possible version numbers are 0 and 2. (Default: 0, 2)
  1139. .LP
  1140. .TP
  1141. \fBRendPostPeriod \fR\fIN\fR \fBseconds\fR|\fBminutes\fR|\fBhours\fR|\fBdays\fR|\fBweeks\fP
  1142. Every time the specified period elapses, Tor uploads any rendezvous
  1143. service descriptors to the directory servers. This information is also
  1144. uploaded whenever it changes. (Default: 20 minutes)
  1145. .\" UNDOCUMENTED
  1146. .\" ignoreversion
  1147. .SH SIGNALS
  1148. Tor catches the following signals:
  1149. .LP
  1150. .TP
  1151. \fBSIGTERM\fR
  1152. Tor will catch this, clean up and sync to disk if necessary, and exit.
  1153. .LP
  1154. .TP
  1155. \fBSIGINT\fR
  1156. Tor clients behave as with SIGTERM; but Tor servers will do a controlled
  1157. slow shutdown, closing listeners and waiting 30 seconds before exiting.
  1158. (The delay can be configured with the ShutdownWaitLength config option.)
  1159. .LP
  1160. .TP
  1161. \fBSIGHUP\fR
  1162. The signal instructs Tor to reload its configuration (including closing
  1163. and reopening logs), fetch a new directory, and kill and restart its
  1164. helper processes if applicable.
  1165. .LP
  1166. .TP
  1167. \fBSIGUSR1\fR
  1168. Log statistics about current connections, past connections, and
  1169. throughput.
  1170. .LP
  1171. .TP
  1172. \fBSIGUSR2\fR
  1173. Switch all logs to loglevel debug. You can go back to the old loglevels
  1174. by sending a SIGHUP.
  1175. .LP
  1176. .TP
  1177. \fBSIGCHLD\fR
  1178. Tor receives this signal when one of its helper processes has exited,
  1179. so it can clean up.
  1180. .LP
  1181. .TP
  1182. \fBSIGPIPE\fR
  1183. Tor catches this signal and ignores it.
  1184. .LP
  1185. .TP
  1186. \fBSIGXFSZ\fR
  1187. If this signal exists on your platform, Tor catches and ignores it.
  1188. .SH FILES
  1189. .LP
  1190. .TP
  1191. .B @CONFDIR@/torrc
  1192. The configuration file, which contains "option value" pairs.
  1193. .LP
  1194. .TP
  1195. .B @LOCALSTATEDIR@/lib/tor/
  1196. The tor process stores keys and other data here.
  1197. .LP
  1198. .TP
  1199. .B \fIDataDirectory\fP/cached-status/*
  1200. 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.
  1201. .LP
  1202. .TP
  1203. .B \fIDataDirectory\fB/cached-descriptors\fR and \fBcached-descriptors.new\fR
  1204. These files hold downloaded router statuses. Some routers may appear more than once; if so, the most recently published descriptor is used. Lines beginning with @-signs are annotations that contain more information about a given router. The ".new" file is an append-only journal; when it gets too large, all entries are merged into a new cached-routers file.
  1205. .LP
  1206. .TP
  1207. .B \fIDataDirectory\fB/cached-routers\fR and \fBcached-routers.new\fR
  1208. Obsolete versions of cached-descriptors and cached-descriptors.new. When Tor can't find the newer files, it looks here instead.
  1209. .LP
  1210. .TP
  1211. .B \fIDataDirectory\fP/state
  1212. A set of persistent key-value mappings. These are documented in the file. These include:
  1213. .PD 0
  1214. .RS 5
  1215. .IP "- The current entry guards and their status."
  1216. .IP "- The current bandwidth accounting values (unused so far; see below)."
  1217. .IP "- When the file was last written"
  1218. .IP "- What version of Tor generated the state file"
  1219. .IP "- A short history of bandwidth usage, as produced in the router descriptors."
  1220. .RE
  1221. .PD
  1222. .LP
  1223. .TP
  1224. .B \fIDataDirectory\fP/bw_accounting
  1225. 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.
  1226. .LP
  1227. .TP
  1228. .B \fIDataDirectory\fP/hsusage
  1229. Used to track hidden service usage in terms of fetch and publish
  1230. requests to this hidden service authoritative directory. Only used when
  1231. recording of statistics is enabled.
  1232. .LP
  1233. .TP
  1234. .B \fIDataDirectory\fP/control_auth_cookie
  1235. Used for cookie authentication with the controller. Location can be
  1236. overridden by the CookieAuthFile config option. Regenerated on startup.
  1237. See control-spec.txt for details. Only used when cookie authentication
  1238. is enabled.
  1239. .LP
  1240. .TP
  1241. .B \fIDataDirectory\fP/keys/*
  1242. Only used by servers. Holds identity keys and onion keys.
  1243. .LP
  1244. .TP
  1245. .B \fIDataDirectory\fP/fingerprint
  1246. Only used by servers. Holds the fingerprint of the server's identity key.
  1247. .LP
  1248. .TP
  1249. .B \fIDataDirectory\fP/approved-routers
  1250. 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.
  1251. .LP
  1252. .TP
  1253. .B \fIDataDirectory\fP/router-stability
  1254. Only used by authoritative directory servers. Tracks measurements for router mean-time-between-failures so that authorities have a good idea of how to set their Stable flags.
  1255. .LP
  1256. .TP
  1257. .B \fIHiddenServiceDirectory\fP/hostname
  1258. The <base32-encoded-fingerprint>.onion domain name for this hidden service.
  1259. .LP
  1260. .TP
  1261. .B \fIHiddenServiceDirectory\fP/private_key
  1262. The private key for this hidden service.
  1263. .SH SEE ALSO
  1264. .BR privoxy (1),
  1265. .BR tsocks (1),
  1266. .BR torify (1)
  1267. .BR https://www.torproject.org/
  1268. .SH BUGS
  1269. Plenty, probably. Tor is still in development. Please report them.
  1270. .SH AUTHORS
  1271. Roger Dingledine <arma@mit.edu>, Nick Mathewson <nickm@alum.mit.edu>.