tor.1.in 54 KB

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