tor.1.txt 187 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648
  1. // Copyright (c) The Tor Project, Inc.
  2. // See LICENSE for licensing information
  3. // This is an asciidoc file used to generate the manpage/html reference.
  4. // Learn asciidoc on http://www.methods.co.nz/asciidoc/userguide.html
  5. :man source: Tor
  6. :man manual: Tor Manual
  7. TOR(1)
  8. ======
  9. NAME
  10. ----
  11. tor - The second-generation onion router
  12. SYNOPSIS
  13. --------
  14. **tor** [__OPTION__ __value__]...
  15. DESCRIPTION
  16. -----------
  17. Tor is a connection-oriented anonymizing communication
  18. service. Users choose a source-routed path through a set of nodes, and
  19. negotiate a "virtual circuit" through the network, in which each node
  20. knows its predecessor and successor, but no others. Traffic flowing down
  21. the circuit is unwrapped by a symmetric key at each node, which reveals
  22. the downstream node. +
  23. Basically, Tor provides a distributed network of servers or relays ("onion routers").
  24. Users bounce their TCP streams -- web traffic, ftp, ssh, etc. -- around the
  25. network, and recipients, observers, and even the relays themselves have
  26. difficulty tracking the source of the stream.
  27. By default, **tor** will act as a client only. To help the network
  28. by providing bandwidth as a relay, change the **ORPort** configuration
  29. option -- see below. Please also consult the documentation on the Tor
  30. Project's website.
  31. COMMAND-LINE OPTIONS
  32. --------------------
  33. [[opt-h]] **-h**, **--help**::
  34. Display a short help message and exit.
  35. [[opt-f]] **-f** __FILE__::
  36. Specify a new configuration file to contain further Tor configuration
  37. options OR pass *-* to make Tor read its configuration from standard
  38. input. (Default: @CONFDIR@/torrc, or $HOME/.torrc if that file is not
  39. found)
  40. [[opt-allow-missing-torrc]] **--allow-missing-torrc**::
  41. Do not require that configuration file specified by **-f** exist if
  42. default torrc can be accessed.
  43. [[opt-defaults-torrc]] **--defaults-torrc** __FILE__::
  44. Specify a file in which to find default values for Tor options. The
  45. contents of this file are overridden by those in the regular
  46. configuration file, and by those on the command line. (Default:
  47. @CONFDIR@/torrc-defaults.)
  48. [[opt-ignore-missing-torrc]] **--ignore-missing-torrc**::
  49. Specifies that Tor should treat a missing torrc file as though it
  50. were empty. Ordinarily, Tor does this for missing default torrc files,
  51. but not for those specified on the command line.
  52. [[opt-hash-password]] **--hash-password** __PASSWORD__::
  53. Generates a hashed password for control port access.
  54. [[opt-list-fingerprint]] **--list-fingerprint**::
  55. Generate your keys and output your nickname and fingerprint.
  56. [[opt-verify-config]] **--verify-config**::
  57. Verify the configuration file is valid.
  58. [[opt-serviceinstall]] **--service install** [**--options** __command-line options__]::
  59. Install an instance of Tor as a Windows service, with the provided
  60. command-line options. Current instructions can be found at
  61. https://www.torproject.org/docs/faq#NTService
  62. [[opt-service]] **--service** **remove**|**start**|**stop**::
  63. Remove, start, or stop a configured Tor Windows service.
  64. [[opt-nt-service]] **--nt-service**::
  65. Used internally to implement a Windows service.
  66. [[opt-list-torrc-options]] **--list-torrc-options**::
  67. List all valid options.
  68. [[opt-list-deprecated-options]] **--list-deprecated-options**::
  69. List all valid options that are scheduled to become obsolete in a
  70. future version. (This is a warning, not a promise.)
  71. [[opt-list-modules]] **--list-modules**::
  72. For each optional module, list whether or not it has been compiled
  73. into Tor. (Any module not listed is not optional in this version of Tor.)
  74. [[opt-version]] **--version**::
  75. Display Tor version and exit. The output is a single line of the format
  76. "Tor version [version number]." (The version number format
  77. is as specified in version-spec.txt.)
  78. [[opt-quiet]] **--quiet**|**--hush**::
  79. Override the default console log. By default, Tor starts out logging
  80. messages at level "notice" and higher to the console. It stops doing so
  81. after it parses its configuration, if the configuration tells it to log
  82. anywhere else. You can override this behavior with the **--hush** option,
  83. which tells Tor to only send warnings and errors to the console, or with
  84. the **--quiet** option, which tells Tor not to log to the console at all.
  85. [[opt-keygen]] **--keygen** [**--newpass**]::
  86. Running "tor --keygen" creates a new ed25519 master identity key for a
  87. relay, or only a fresh temporary signing key and certificate, if you
  88. already have a master key. Optionally you can encrypt the master identity
  89. key with a passphrase: Tor will ask you for one. If you don't want to
  90. encrypt the master key, just don't enter any passphrase when asked. +
  91. +
  92. The **--newpass** option should be used with --keygen only when you need
  93. to add, change, or remove a passphrase on an existing ed25519 master
  94. identity key. You will be prompted for the old passphase (if any),
  95. and the new passphrase (if any). +
  96. +
  97. When generating a master key, you will probably want to use
  98. **--DataDirectory** to control where the keys
  99. and certificates will be stored, and **--SigningKeyLifetime** to
  100. control their lifetimes. Their behavior is as documented in the
  101. server options section below. (You must have write access to the specified
  102. DataDirectory.) +
  103. +
  104. To use the generated files, you must copy them to the DataDirectory/keys
  105. directory of your Tor daemon, and make sure that they are owned by the
  106. user actually running the Tor daemon on your system.
  107. **--passphrase-fd** __FILEDES__::
  108. Filedescriptor to read the passphrase from. Note that unlike with the
  109. tor-gencert program, the entire file contents are read and used as
  110. the passphrase, including any trailing newlines.
  111. Default: read from the terminal.
  112. [[opt-key-expiration]] **--key-expiration** [**purpose**]::
  113. The **purpose** specifies which type of key certificate to determine
  114. the expiration of. The only currently recognised **purpose** is
  115. "sign". +
  116. +
  117. Running "tor --key-expiration sign" will attempt to find your signing
  118. key certificate and will output, both in the logs as well as to stdout,
  119. the signing key certificate's expiration time in ISO-8601 format.
  120. For example, the output sent to stdout will be of the form:
  121. "signing-cert-expiry: 2017-07-25 08:30:15 UTC"
  122. Other options can be specified on the command-line in the format "--option
  123. value", in the format "option value", or in a configuration file. For
  124. instance, you can tell Tor to start listening for SOCKS connections on port
  125. 9999 by passing --SocksPort 9999 or SocksPort 9999 to it on the command line,
  126. or by putting "SocksPort 9999" in the configuration file. You will need to
  127. quote options with spaces in them: if you want Tor to log all debugging
  128. messages to debug.log, you will probably need to say **--Log** `"debug file
  129. debug.log"`.
  130. Options on the command line override those in configuration files. See the
  131. next section for more information.
  132. THE CONFIGURATION FILE FORMAT
  133. -----------------------------
  134. All configuration options in a configuration are written on a single line by
  135. default. They take the form of an option name and a value, or an option name
  136. and a quoted value (option value or option "value"). Anything after a #
  137. character is treated as a comment. Options are
  138. case-insensitive. C-style escaped characters are allowed inside quoted
  139. values. To split one configuration entry into multiple lines, use a single
  140. backslash character (\) before the end of the line. Comments can be used in
  141. such multiline entries, but they must start at the beginning of a line.
  142. Configuration options can be imported from files or folders using the %include
  143. option with the value being a path. If the path is a file, the options from the
  144. file will be parsed as if they were written where the %include option is. If
  145. the path is a folder, all files on that folder will be parsed following lexical
  146. order. Files starting with a dot are ignored. Files on subfolders are ignored.
  147. The %include option can be used recursively.
  148. By default, an option on the command line overrides an option found in the
  149. configuration file, and an option in a configuration file overrides one in
  150. the defaults file.
  151. This rule is simple for options that take a single value, but it can become
  152. complicated for options that are allowed to occur more than once: if you
  153. specify four SocksPorts in your configuration file, and one more SocksPort on
  154. the command line, the option on the command line will replace __all__ of the
  155. SocksPorts in the configuration file. If this isn't what you want, prefix
  156. the option name with a plus sign (+), and it will be appended to the previous
  157. set of options instead. For example, setting SocksPort 9100 will use only
  158. port 9100, but setting +SocksPort 9100 will use ports 9100 and 9050 (because
  159. this is the default).
  160. Alternatively, you might want to remove every instance of an option in the
  161. configuration file, and not replace it at all: you might want to say on the
  162. command line that you want no SocksPorts at all. To do that, prefix the
  163. option name with a forward slash (/). You can use the plus sign (+) and the
  164. forward slash (/) in the configuration file and on the command line.
  165. GENERAL OPTIONS
  166. ---------------
  167. [[BandwidthRate]] **BandwidthRate** __N__ **bytes**|**KBytes**|**MBytes**|**GBytes**|**TBytes**|**KBits**|**MBits**|**GBits**|**TBits**::
  168. A token bucket limits the average incoming bandwidth usage on this node
  169. to the specified number of bytes per second, and the average outgoing
  170. bandwidth usage to that same value. If you want to run a relay in the
  171. public network, this needs to be _at the very least_ 75 KBytes for a
  172. relay (that is, 600 kbits) or 50 KBytes for a bridge (400 kbits) -- but of
  173. course, more is better; we recommend at least 250 KBytes (2 mbits) if
  174. possible. (Default: 1 GByte) +
  175. +
  176. Note that this option, and other bandwidth-limiting options, apply to TCP
  177. data only: They do not count TCP headers or DNS traffic. +
  178. +
  179. With this option, and in other options that take arguments in bytes,
  180. KBytes, and so on, other formats are also supported. Notably, "KBytes" can
  181. also be written as "kilobytes" or "kb"; "MBytes" can be written as
  182. "megabytes" or "MB"; "kbits" can be written as "kilobits"; and so forth.
  183. Tor also accepts "byte" and "bit" in the singular.
  184. The prefixes "tera" and "T" are also recognized.
  185. If no units are given, we default to bytes.
  186. To avoid confusion, we recommend writing "bytes" or "bits" explicitly,
  187. since it's easy to forget that "B" means bytes, not bits.
  188. [[BandwidthBurst]] **BandwidthBurst** __N__ **bytes**|**KBytes**|**MBytes**|**GBytes**|**TBytes**|**KBits**|**MBits**|**GBits**|**TBits**::
  189. Limit the maximum token bucket size (also known as the burst) to the given
  190. number of bytes in each direction. (Default: 1 GByte)
  191. [[MaxAdvertisedBandwidth]] **MaxAdvertisedBandwidth** __N__ **bytes**|**KBytes**|**MBytes**|**GBytes**|**TBytes**|**KBits**|**MBits**|**GBits**|**TBits**::
  192. If set, we will not advertise more than this amount of bandwidth for our
  193. BandwidthRate. Server operators who want to reduce the number of clients
  194. who ask to build circuits through them (since this is proportional to
  195. advertised bandwidth rate) can thus reduce the CPU demands on their server
  196. without impacting network performance.
  197. [[RelayBandwidthRate]] **RelayBandwidthRate** __N__ **bytes**|**KBytes**|**MBytes**|**GBytes**|**TBytes**|**KBits**|**MBits**|**GBits**|**TBits**::
  198. If not 0, a separate token bucket limits the average incoming bandwidth
  199. usage for \_relayed traffic_ on this node to the specified number of bytes
  200. per second, and the average outgoing bandwidth usage to that same value.
  201. Relayed traffic currently is calculated to include answers to directory
  202. requests, but that may change in future versions. They do not include directory
  203. fetches by the relay (from authority or other relays), because that is considered
  204. "client" activity. (Default: 0)
  205. [[RelayBandwidthBurst]] **RelayBandwidthBurst** __N__ **bytes**|**KBytes**|**MBytes**|**GBytes**|**TBytes**|**KBits**|**MBits**|**GBits**|**TBits**::
  206. If not 0, limit the maximum token bucket size (also known as the burst) for
  207. \_relayed traffic_ to the given number of bytes in each direction.
  208. They do not include directory fetches by the relay (from authority
  209. or other relays), because that is considered "client" activity. (Default: 0)
  210. [[PerConnBWRate]] **PerConnBWRate** __N__ **bytes**|**KBytes**|**MBytes**|**GBytes**|**TBytes**|**KBits**|**MBits**|**GBits**|**TBits**::
  211. If this option is set manually, or via the "perconnbwrate" consensus
  212. field, Tor will use it for separate rate limiting for each connection
  213. from a non-relay. (Default: 0)
  214. [[PerConnBWBurst]] **PerConnBWBurst** __N__ **bytes**|**KBytes**|**MBytes**|**GBytes**|**TBytes**|**KBits**|**MBits**|**GBits**|**TBits**::
  215. If this option is set manually, or via the "perconnbwburst" consensus
  216. field, Tor will use it for separate rate limiting for each connection
  217. from a non-relay. (Default: 0)
  218. [[ClientTransportPlugin]] **ClientTransportPlugin** __transport__ socks4|socks5 __IP__:__PORT__::
  219. **ClientTransportPlugin** __transport__ exec __path-to-binary__ [options]::
  220. In its first form, when set along with a corresponding Bridge line, the Tor
  221. client forwards its traffic to a SOCKS-speaking proxy on "IP:PORT".
  222. (IPv4 addresses should written as-is; IPv6 addresses should be wrapped in
  223. square brackets.) It's the
  224. duty of that proxy to properly forward the traffic to the bridge. +
  225. +
  226. In its second form, when set along with a corresponding Bridge line, the Tor
  227. client launches the pluggable transport proxy executable in
  228. __path-to-binary__ using __options__ as its command-line options, and
  229. forwards its traffic to it. It's the duty of that proxy to properly forward
  230. the traffic to the bridge.
  231. [[ServerTransportPlugin]] **ServerTransportPlugin** __transport__ exec __path-to-binary__ [options]::
  232. The Tor relay launches the pluggable transport proxy in __path-to-binary__
  233. using __options__ as its command-line options, and expects to receive
  234. proxied client traffic from it.
  235. [[ServerTransportListenAddr]] **ServerTransportListenAddr** __transport__ __IP__:__PORT__::
  236. When this option is set, Tor will suggest __IP__:__PORT__ as the
  237. listening address of any pluggable transport proxy that tries to
  238. launch __transport__. (IPv4 addresses should written as-is; IPv6
  239. addresses should be wrapped in square brackets.)
  240. [[ServerTransportOptions]] **ServerTransportOptions** __transport__ __k=v__ __k=v__ ...::
  241. When this option is set, Tor will pass the __k=v__ parameters to
  242. any pluggable transport proxy that tries to launch __transport__. +
  243. (Example: ServerTransportOptions obfs45 shared-secret=bridgepasswd cache=/var/lib/tor/cache)
  244. [[ExtORPort]] **ExtORPort** \['address':]__port__|**auto**::
  245. Open this port to listen for Extended ORPort connections from your
  246. pluggable transports.
  247. [[ExtORPortCookieAuthFile]] **ExtORPortCookieAuthFile** __Path__::
  248. If set, this option overrides the default location and file name
  249. for the Extended ORPort's cookie file -- the cookie file is needed
  250. for pluggable transports to communicate through the Extended ORPort.
  251. [[ExtORPortCookieAuthFileGroupReadable]] **ExtORPortCookieAuthFileGroupReadable** **0**|**1**::
  252. If this option is set to 0, don't allow the filesystem group to read the
  253. Extended OR Port cookie file. If the option is set to 1, make the cookie
  254. file readable by the default GID. [Making the file readable by other
  255. groups is not yet implemented; let us know if you need this for some
  256. reason.] (Default: 0)
  257. [[ConnLimit]] **ConnLimit** __NUM__::
  258. The minimum number of file descriptors that must be available to the Tor
  259. process before it will start. Tor will ask the OS for as many file
  260. descriptors as the OS will allow (you can find this by "ulimit -H -n").
  261. If this number is less than ConnLimit, then Tor will refuse to start. +
  262. +
  263. Tor relays need thousands of sockets, to connect to every other relay.
  264. If you are running a private bridge, you can reduce the number of sockets
  265. that Tor uses. For example, to limit Tor to 500 sockets, run
  266. "ulimit -n 500" in a shell. Then start tor in the same shell, with
  267. **ConnLimit 500**. You may also need to set **DisableOOSCheck 0**. +
  268. +
  269. Unless you have severely limited sockets, you probably don't need to
  270. adjust **ConnLimit** itself. It has no effect on Windows, since that
  271. platform lacks getrlimit(). (Default: 1000)
  272. [[DisableNetwork]] **DisableNetwork** **0**|**1**::
  273. When this option is set, we don't listen for or accept any connections
  274. other than controller connections, and we close (and don't reattempt)
  275. any outbound
  276. connections. Controllers sometimes use this option to avoid using
  277. the network until Tor is fully configured. Tor will make still certain
  278. network-related calls (like DNS lookups) as a part of its configuration
  279. process, even if DisableNetwork is set. (Default: 0)
  280. [[ConstrainedSockets]] **ConstrainedSockets** **0**|**1**::
  281. If set, Tor will tell the kernel to attempt to shrink the buffers for all
  282. sockets to the size specified in **ConstrainedSockSize**. This is useful for
  283. virtual servers and other environments where system level TCP buffers may
  284. be limited. If you're on a virtual server, and you encounter the "Error
  285. creating network socket: No buffer space available" message, you are
  286. likely experiencing this problem. +
  287. +
  288. The preferred solution is to have the admin increase the buffer pool for
  289. the host itself via /proc/sys/net/ipv4/tcp_mem or equivalent facility;
  290. this configuration option is a second-resort. +
  291. +
  292. The DirPort option should also not be used if TCP buffers are scarce. The
  293. cached directory requests consume additional sockets which exacerbates
  294. the problem. +
  295. +
  296. You should **not** enable this feature unless you encounter the "no buffer
  297. space available" issue. Reducing the TCP buffers affects window size for
  298. the TCP stream and will reduce throughput in proportion to round trip
  299. time on long paths. (Default: 0)
  300. [[ConstrainedSockSize]] **ConstrainedSockSize** __N__ **bytes**|**KBytes**::
  301. When **ConstrainedSockets** is enabled the receive and transmit buffers for
  302. all sockets will be set to this limit. Must be a value between 2048 and
  303. 262144, in 1024 byte increments. Default of 8192 is recommended.
  304. [[ControlPort]] **ControlPort** \['address':]__port__|**unix:**__path__|**auto** [__flags__]::
  305. If set, Tor will accept connections on this port and allow those
  306. connections to control the Tor process using the Tor Control Protocol
  307. (described in control-spec.txt in
  308. https://spec.torproject.org[torspec]). Note: unless you also
  309. specify one or more of **HashedControlPassword** or
  310. **CookieAuthentication**, setting this option will cause Tor to allow
  311. any process on the local host to control it. (Setting both authentication
  312. methods means either method is sufficient to authenticate to Tor.) This
  313. option is required for many Tor controllers; most use the value of 9051.
  314. If a unix domain socket is used, you may quote the path using standard
  315. C escape sequences. You can specify this directive multiple times, to
  316. bind to multiple address/port pairs.
  317. Set it to "auto" to have Tor pick a port for you. (Default: 0) +
  318. +
  319. Recognized flags are...
  320. **GroupWritable**;;
  321. Unix domain sockets only: makes the socket get created as
  322. group-writable.
  323. **WorldWritable**;;
  324. Unix domain sockets only: makes the socket get created as
  325. world-writable.
  326. **RelaxDirModeCheck**;;
  327. Unix domain sockets only: Do not insist that the directory
  328. that holds the socket be read-restricted.
  329. [[ControlSocket]] **ControlSocket** __Path__::
  330. Like ControlPort, but listens on a Unix domain socket, rather than a TCP
  331. socket. '0' disables ControlSocket. (Unix and Unix-like systems only.)
  332. (Default: 0)
  333. [[ControlSocketsGroupWritable]] **ControlSocketsGroupWritable** **0**|**1**::
  334. If this option is set to 0, don't allow the filesystem group to read and
  335. write unix sockets (e.g. ControlSocket). If the option is set to 1, make
  336. the control socket readable and writable by the default GID. (Default: 0)
  337. [[HashedControlPassword]] **HashedControlPassword** __hashed_password__::
  338. Allow connections on the control port if they present
  339. the password whose one-way hash is __hashed_password__. You
  340. can compute the hash of a password by running "tor --hash-password
  341. __password__". You can provide several acceptable passwords by using more
  342. than one HashedControlPassword line.
  343. [[CookieAuthentication]] **CookieAuthentication** **0**|**1**::
  344. If this option is set to 1, allow connections on the control port
  345. when the connecting process knows the contents of a file named
  346. "control_auth_cookie", which Tor will create in its data directory. This
  347. authentication method should only be used on systems with good filesystem
  348. security. (Default: 0)
  349. [[CookieAuthFile]] **CookieAuthFile** __Path__::
  350. If set, this option overrides the default location and file name
  351. for Tor's cookie file. (See CookieAuthentication above.)
  352. [[CookieAuthFileGroupReadable]] **CookieAuthFileGroupReadable** **0**|**1**::
  353. If this option is set to 0, don't allow the filesystem group to read the
  354. cookie file. If the option is set to 1, make the cookie file readable by
  355. the default GID. [Making the file readable by other groups is not yet
  356. implemented; let us know if you need this for some reason.] (Default: 0)
  357. [[ControlPortWriteToFile]] **ControlPortWriteToFile** __Path__::
  358. If set, Tor writes the address and port of any control port it opens to
  359. this address. Usable by controllers to learn the actual control port
  360. when ControlPort is set to "auto".
  361. [[ControlPortFileGroupReadable]] **ControlPortFileGroupReadable** **0**|**1**::
  362. If this option is set to 0, don't allow the filesystem group to read the
  363. control port file. If the option is set to 1, make the control port
  364. file readable by the default GID. (Default: 0)
  365. [[DataDirectory]] **DataDirectory** __DIR__::
  366. Store working data in DIR. Can not be changed while tor is running.
  367. (Default: ~/.tor if your home directory is not /; otherwise,
  368. @LOCALSTATEDIR@/lib/tor. On Windows, the default is
  369. your ApplicationData folder.)
  370. [[DataDirectoryGroupReadable]] **DataDirectoryGroupReadable** **0**|**1**::
  371. If this option is set to 0, don't allow the filesystem group to read the
  372. DataDirectory. If the option is set to 1, make the DataDirectory readable
  373. by the default GID. (Default: 0)
  374. [[CacheDirectory]] **CacheDirectory** __DIR__::
  375. Store cached directory data in DIR. Can not be changed while tor is
  376. running.
  377. (Default: uses the value of DataDirectory.)
  378. [[CacheDirectoryGroupReadable]] **CacheDirectoryGroupReadable** **0**|**1**|**auto**::
  379. If this option is set to 0, don't allow the filesystem group to read the
  380. CacheDirectory. If the option is set to 1, make the CacheDirectory readable
  381. by the default GID. If the option is "auto", then we use the
  382. setting for DataDirectoryGroupReadable when the CacheDirectory is the
  383. same as the DataDirectory, and 0 otherwise. (Default: auto)
  384. [[FallbackDir]] **FallbackDir** __ipv4address__:__dirport__ orport=__orport__ id=__fingerprint__ [weight=__num__] [ipv6=**[**__ipv6address__**]**:__orport__]::
  385. When tor is unable to connect to any directory cache for directory info
  386. (usually because it doesn't know about any yet) it tries a hard-coded
  387. directory. Relays try one directory authority at a time. Clients try
  388. multiple directory authorities and FallbackDirs, to avoid hangs on
  389. startup if a hard-coded directory is down. Clients wait for a few seconds
  390. between each attempt, and retry FallbackDirs more often than directory
  391. authorities, to reduce the load on the directory authorities. +
  392. +
  393. FallbackDirs should be stable relays with stable IP addresses, ports,
  394. and identity keys. They must have a DirPort. +
  395. +
  396. By default, the directory authorities are also FallbackDirs. Specifying a
  397. FallbackDir replaces Tor's default hard-coded FallbackDirs (if any).
  398. (See the **DirAuthority** entry for an explanation of each flag.)
  399. [[UseDefaultFallbackDirs]] **UseDefaultFallbackDirs** **0**|**1**::
  400. Use Tor's default hard-coded FallbackDirs (if any). (When a
  401. FallbackDir line is present, it replaces the hard-coded FallbackDirs,
  402. regardless of the value of UseDefaultFallbackDirs.) (Default: 1)
  403. [[DirAuthority]] **DirAuthority** [__nickname__] [**flags**] __ipv4address__:__dirport__ __fingerprint__::
  404. Use a nonstandard authoritative directory server at the provided address
  405. and port, with the specified key fingerprint. This option can be repeated
  406. many times, for multiple authoritative directory servers. Flags are
  407. separated by spaces, and determine what kind of an authority this directory
  408. is. By default, an authority is not authoritative for any directory style
  409. or version unless an appropriate flag is given. +
  410. +
  411. Tor will use this authority as a bridge authoritative directory if the
  412. "bridge" flag is set. If a flag "orport=**orport**" is given, Tor will
  413. use the given port when opening encrypted tunnels to the dirserver. If a
  414. flag "weight=**num**" is given, then the directory server is chosen
  415. randomly with probability proportional to that weight (default 1.0). If a
  416. flag "v3ident=**fp**" is given, the dirserver is a v3 directory authority
  417. whose v3 long-term signing key has the fingerprint **fp**. Lastly,
  418. if an "ipv6=**[**__ipv6address__**]**:__orport__" flag is present, then
  419. the directory authority is listening for IPv6 connections on the
  420. indicated IPv6 address and OR Port. +
  421. +
  422. Tor will contact the authority at __ipv4address__ to
  423. download directory documents. Clients always use the ORPort. Relays
  424. usually use the DirPort, but will use the ORPort in some circumstances.
  425. If an IPv6 ORPort is supplied, clients will also download directory
  426. documents at the IPv6 ORPort, if they are configured to use IPv6. +
  427. +
  428. If no **DirAuthority** line is given, Tor will use the default directory
  429. authorities. NOTE: this option is intended for setting up a private Tor
  430. network with its own directory authorities. If you use it, you will be
  431. distinguishable from other users, because you won't believe the same
  432. authorities they do.
  433. [[DirAuthorityFallbackRate]] **DirAuthorityFallbackRate** __NUM__::
  434. When configured to use both directory authorities and fallback
  435. directories, the directory authorities also work as fallbacks. They are
  436. chosen with their regular weights, multiplied by this number, which
  437. should be 1.0 or less. The default is less than 1, to reduce load on
  438. authorities. (Default: 0.1)
  439. [[AlternateDirAuthority]] **AlternateDirAuthority** [__nickname__] [**flags**] __ipv4address__:__port__ __fingerprint__ +
  440. [[AlternateBridgeAuthority]] **AlternateBridgeAuthority** [__nickname__] [**flags**] __ipv4address__:__port__ __ fingerprint__::
  441. These options behave as DirAuthority, but they replace fewer of the
  442. default directory authorities. Using
  443. AlternateDirAuthority replaces the default Tor directory authorities, but
  444. leaves the default bridge authorities in
  445. place. Similarly,
  446. AlternateBridgeAuthority replaces the default bridge authority,
  447. but leaves the directory authorities alone.
  448. [[DisableAllSwap]] **DisableAllSwap** **0**|**1**::
  449. If set to 1, Tor will attempt to lock all current and future memory pages,
  450. so that memory cannot be paged out. Windows, OS X and Solaris are currently
  451. not supported. We believe that this feature works on modern Gnu/Linux
  452. distributions, and that it should work on *BSD systems (untested). This
  453. option requires that you start your Tor as root, and you should use the
  454. **User** option to properly reduce Tor's privileges.
  455. Can not be changed while tor is running. (Default: 0)
  456. [[DisableDebuggerAttachment]] **DisableDebuggerAttachment** **0**|**1**::
  457. If set to 1, Tor will attempt to prevent basic debugging attachment attempts
  458. by other processes. This may also keep Tor from generating core files if
  459. it crashes. It has no impact for users who wish to attach if they
  460. have CAP_SYS_PTRACE or if they are root. We believe that this feature
  461. works on modern Gnu/Linux distributions, and that it may also work on *BSD
  462. systems (untested). Some modern Gnu/Linux systems such as Ubuntu have the
  463. kernel.yama.ptrace_scope sysctl and by default enable it as an attempt to
  464. limit the PTRACE scope for all user processes by default. This feature will
  465. attempt to limit the PTRACE scope for Tor specifically - it will not attempt
  466. to alter the system wide ptrace scope as it may not even exist. If you wish
  467. to attach to Tor with a debugger such as gdb or strace you will want to set
  468. this to 0 for the duration of your debugging. Normal users should leave it
  469. on. Disabling this option while Tor is running is prohibited. (Default: 1)
  470. [[FetchDirInfoEarly]] **FetchDirInfoEarly** **0**|**1**::
  471. If set to 1, Tor will always fetch directory information like other
  472. directory caches, even if you don't meet the normal criteria for fetching
  473. early. Normal users should leave it off. (Default: 0)
  474. [[FetchDirInfoExtraEarly]] **FetchDirInfoExtraEarly** **0**|**1**::
  475. If set to 1, Tor will fetch directory information before other directory
  476. caches. It will attempt to download directory information closer to the
  477. start of the consensus period. Normal users should leave it off.
  478. (Default: 0)
  479. [[FetchHidServDescriptors]] **FetchHidServDescriptors** **0**|**1**::
  480. If set to 0, Tor will never fetch any hidden service descriptors from the
  481. rendezvous directories. This option is only useful if you're using a Tor
  482. controller that handles hidden service fetches for you. (Default: 1)
  483. [[FetchServerDescriptors]] **FetchServerDescriptors** **0**|**1**::
  484. If set to 0, Tor will never fetch any network status summaries or server
  485. descriptors from the directory servers. This option is only useful if
  486. you're using a Tor controller that handles directory fetches for you.
  487. (Default: 1)
  488. [[FetchUselessDescriptors]] **FetchUselessDescriptors** **0**|**1**::
  489. If set to 1, Tor will fetch every consensus flavor, and all server
  490. descriptors and authority certificates referenced by those consensuses,
  491. except for extra info descriptors. When this option is 1, Tor will also
  492. keep fetching descriptors, even when idle.
  493. If set to 0, Tor will avoid fetching useless descriptors: flavors that it
  494. is not using to build circuits, and authority certificates it does not
  495. trust. When Tor hasn't built any application circuits, it will go idle,
  496. and stop fetching descriptors. This option is useful if you're using a
  497. tor client with an external parser that uses a full consensus.
  498. This option fetches all documents except extrainfo descriptors,
  499. **DirCache** fetches and serves all documents except extrainfo
  500. descriptors, **DownloadExtraInfo*** fetches extrainfo documents, and serves
  501. them if **DirCache** is on, and **UseMicrodescriptors** changes the
  502. flavour of consensues and descriptors that is fetched and used for
  503. building circuits. (Default: 0)
  504. [[HTTPProxy]] **HTTPProxy** __host__[:__port__]::
  505. Tor will make all its directory requests through this host:port (or host:80
  506. if port is not specified), rather than connecting directly to any directory
  507. servers. (DEPRECATED: As of 0.3.1.0-alpha you should use HTTPSProxy.)
  508. [[HTTPProxyAuthenticator]] **HTTPProxyAuthenticator** __username:password__::
  509. If defined, Tor will use this username:password for Basic HTTP proxy
  510. authentication, as in RFC 2617. This is currently the only form of HTTP
  511. proxy authentication that Tor supports; feel free to submit a patch if you
  512. want it to support others. (DEPRECATED: As of 0.3.1.0-alpha you should use
  513. HTTPSProxyAuthenticator.)
  514. [[HTTPSProxy]] **HTTPSProxy** __host__[:__port__]::
  515. Tor will make all its OR (SSL) connections through this host:port (or
  516. host:443 if port is not specified), via HTTP CONNECT rather than connecting
  517. directly to servers. You may want to set **FascistFirewall** to restrict
  518. the set of ports you might try to connect to, if your HTTPS proxy only
  519. allows connecting to certain ports.
  520. [[HTTPSProxyAuthenticator]] **HTTPSProxyAuthenticator** __username:password__::
  521. If defined, Tor will use this username:password for Basic HTTPS proxy
  522. authentication, as in RFC 2617. This is currently the only form of HTTPS
  523. proxy authentication that Tor supports; feel free to submit a patch if you
  524. want it to support others.
  525. [[Sandbox]] **Sandbox** **0**|**1**::
  526. If set to 1, Tor will run securely through the use of a syscall sandbox.
  527. Otherwise the sandbox will be disabled. The option is currently an
  528. experimental feature. It only works on Linux-based operating systems,
  529. and only when Tor has been built with the libseccomp library. This option
  530. can not be changed while tor is running. +
  531. +
  532. When the **Sandbox** is 1, the following options can not be changed when tor
  533. is running:
  534. **Address**,
  535. **ConnLimit**,
  536. **CookieAuthFile**,
  537. **DirPortFrontPage**,
  538. **ExtORPortCookieAuthFile**,
  539. **Logs**,
  540. **ServerDNSResolvConfFile**,
  541. **ClientOnionAuthDir** (and any files in it won't reload on HUP signal).
  542. +
  543. Launching new Onion Services through the control port is not supported
  544. with current syscall sandboxing implementation.
  545. +
  546. Tor must remain in client or server mode (some changes to **ClientOnly**
  547. and **ORPort** are not allowed). Currently, if **Sandbox** is 1,
  548. **ControlPort** command "GETINFO address" will not work.
  549. +
  550. (Default: 0)
  551. [[Socks4Proxy]] **Socks4Proxy** __host__[:__port__]::
  552. Tor will make all OR connections through the SOCKS 4 proxy at host:port
  553. (or host:1080 if port is not specified).
  554. [[Socks5Proxy]] **Socks5Proxy** __host__[:__port__]::
  555. Tor will make all OR connections through the SOCKS 5 proxy at host:port
  556. (or host:1080 if port is not specified).
  557. [[Socks5ProxyUsername]] **Socks5ProxyUsername** __username__ +
  558. [[Socks5ProxyPassword]] **Socks5ProxyPassword** __password__::
  559. If defined, authenticate to the SOCKS 5 server using username and password
  560. in accordance to RFC 1929. Both username and password must be between 1 and
  561. 255 characters.
  562. [[UnixSocksGroupWritable]] **UnixSocksGroupWritable** **0**|**1**::
  563. If this option is set to 0, don't allow the filesystem group to read and
  564. write unix sockets (e.g. SocksPort unix:). If the option is set to 1, make
  565. the Unix socket readable and writable by the default GID. (Default: 0)
  566. [[KeepalivePeriod]] **KeepalivePeriod** __NUM__::
  567. To keep firewalls from expiring connections, send a padding keepalive cell
  568. every NUM seconds on open connections that are in use. (Default: 5 minutes)
  569. [[Log]] **Log** __minSeverity__[-__maxSeverity__] **stderr**|**stdout**|**syslog**::
  570. Send all messages between __minSeverity__ and __maxSeverity__ to the standard
  571. output stream, the standard error stream, or to the system log. (The
  572. "syslog" value is only supported on Unix.) Recognized severity levels are
  573. debug, info, notice, warn, and err. We advise using "notice" in most cases,
  574. since anything more verbose may provide sensitive information to an
  575. attacker who obtains the logs. If only one severity level is given, all
  576. messages of that level or higher will be sent to the listed destination. +
  577. +
  578. Some low-level logs may be sent from signal handlers, so their destination
  579. logs must be signal-safe. These low-level logs include backtraces,
  580. logging function errors, and errors in code called by logging functions.
  581. Signal-safe logs are always sent to stderr or stdout. They are also sent to
  582. a limited number of log files that are configured to log messages at error
  583. severity from the bug or general domains. They are never sent as syslogs,
  584. android logs, control port log events, or to any API-based log
  585. destinations.
  586. [[Log2]] **Log** __minSeverity__[-__maxSeverity__] **file** __FILENAME__::
  587. As above, but send log messages to the listed filename. The
  588. "Log" option may appear more than once in a configuration file.
  589. Messages are sent to all the logs that match their severity
  590. level.
  591. [[Log3]] **Log** **[**__domain__,...**]**__minSeverity__[-__maxSeverity__] ... **file** __FILENAME__ +
  592. [[Log4]] **Log** **[**__domain__,...**]**__minSeverity__[-__maxSeverity__] ... **stderr**|**stdout**|**syslog**::
  593. As above, but select messages by range of log severity __and__ by a
  594. set of "logging domains". Each logging domain corresponds to an area of
  595. functionality inside Tor. You can specify any number of severity ranges
  596. for a single log statement, each of them prefixed by a comma-separated
  597. list of logging domains. You can prefix a domain with $$~$$ to indicate
  598. negation, and use * to indicate "all domains". If you specify a severity
  599. range without a list of domains, it matches all domains. +
  600. +
  601. This is an advanced feature which is most useful for debugging one or two
  602. of Tor's subsystems at a time. +
  603. +
  604. The currently recognized domains are: general, crypto, net, config, fs,
  605. protocol, mm, http, app, control, circ, rend, bug, dir, dirserv, or, edge,
  606. acct, hist, handshake, heartbeat, channel, sched, guard, consdiff, dos,
  607. process, pt, btrack, and mesg.
  608. Domain names are case-insensitive. +
  609. +
  610. For example, "`Log [handshake]debug [~net,~mm]info notice stdout`" sends
  611. to stdout: all handshake messages of any severity, all info-and-higher
  612. messages from domains other than networking and memory management, and all
  613. messages of severity notice or higher.
  614. [[LogMessageDomains]] **LogMessageDomains** **0**|**1**::
  615. If 1, Tor includes message domains with each log message. Every log
  616. message currently has at least one domain; most currently have exactly
  617. one. This doesn't affect controller log messages. (Default: 0)
  618. [[MaxUnparseableDescSizeToLog]] **MaxUnparseableDescSizeToLog** __N__ **bytes**|**KBytes**|**MBytes**|**GBytes**|**TBytes**::
  619. Unparseable descriptors (e.g. for votes, consensuses, routers) are logged
  620. in separate files by hash, up to the specified size in total. Note that
  621. only files logged during the lifetime of this Tor process count toward the
  622. total; this is intended to be used to debug problems without opening live
  623. servers to resource exhaustion attacks. (Default: 10 MB)
  624. [[OutboundBindAddress]] **OutboundBindAddress** __IP__::
  625. Make all outbound connections originate from the IP address specified. This
  626. is only useful when you have multiple network interfaces, and you want all
  627. of Tor's outgoing connections to use a single one. This option may
  628. be used twice, once with an IPv4 address and once with an IPv6 address.
  629. IPv6 addresses should be wrapped in square brackets.
  630. This setting will be ignored for connections to the loopback addresses
  631. (127.0.0.0/8 and ::1), and is not used for DNS requests as well.
  632. [[OutboundBindAddressOR]] **OutboundBindAddressOR** __IP__::
  633. Make all outbound non-exit (relay and other) connections
  634. originate from the IP address specified. This option overrides
  635. **OutboundBindAddress** for the same IP version. This option may
  636. be used twice, once with an IPv4 address and once with an IPv6
  637. address. IPv6 addresses should be wrapped in square brackets.
  638. This setting will be ignored for connections to the loopback
  639. addresses (127.0.0.0/8 and ::1).
  640. [[OutboundBindAddressExit]] **OutboundBindAddressExit** __IP__::
  641. Make all outbound exit connections originate from the IP address
  642. specified. This option overrides **OutboundBindAddress** for the
  643. same IP version. This option may be used twice, once with an IPv4
  644. address and once with an IPv6 address.
  645. IPv6 addresses should be wrapped in square brackets.
  646. This setting will be ignored
  647. for connections to the loopback addresses (127.0.0.0/8 and ::1).
  648. [[PidFile]] **PidFile** __FILE__::
  649. On startup, write our PID to FILE. On clean shutdown, remove
  650. FILE. Can not be changed while tor is running.
  651. [[ProtocolWarnings]] **ProtocolWarnings** **0**|**1**::
  652. If 1, Tor will log with severity \'warn' various cases of other parties not
  653. following the Tor specification. Otherwise, they are logged with severity
  654. \'info'. (Default: 0)
  655. [[RunAsDaemon]] **RunAsDaemon** **0**|**1**::
  656. If 1, Tor forks and daemonizes to the background. This option has no effect
  657. on Windows; instead you should use the --service command-line option.
  658. Can not be changed while tor is running.
  659. (Default: 0)
  660. [[LogTimeGranularity]] **LogTimeGranularity** __NUM__::
  661. Set the resolution of timestamps in Tor's logs to NUM milliseconds.
  662. NUM must be positive and either a divisor or a multiple of 1 second.
  663. Note that this option only controls the granularity written by Tor to
  664. a file or console log. Tor does not (for example) "batch up" log
  665. messages to affect times logged by a controller, times attached to
  666. syslog messages, or the mtime fields on log files. (Default: 1 second)
  667. [[TruncateLogFile]] **TruncateLogFile** **0**|**1**::
  668. If 1, Tor will overwrite logs at startup and in response to a HUP signal,
  669. instead of appending to them. (Default: 0)
  670. [[SyslogIdentityTag]] **SyslogIdentityTag** __tag__::
  671. When logging to syslog, adds a tag to the syslog identity such that
  672. log entries are marked with "Tor-__tag__". Can not be changed while tor is
  673. running. (Default: none)
  674. [[AndroidIdentityTag]] **AndroidIdentityTag** __tag__::
  675. When logging to Android's logging subsystem, adds a tag to the log identity
  676. such that log entries are marked with "Tor-__tag__". Can not be changed while
  677. tor is running. (Default: none)
  678. [[SafeLogging]] **SafeLogging** **0**|**1**|**relay**::
  679. Tor can scrub potentially sensitive strings from log messages (e.g.
  680. addresses) by replacing them with the string [scrubbed]. This way logs can
  681. still be useful, but they don't leave behind personally identifying
  682. information about what sites a user might have visited. +
  683. +
  684. If this option is set to 0, Tor will not perform any scrubbing, if it is
  685. set to 1, all potentially sensitive strings are replaced. If it is set to
  686. relay, all log messages generated when acting as a relay are sanitized, but
  687. all messages generated when acting as a client are not.
  688. Note: Tor may not heed this option when logging at log levels below Notice.
  689. (Default: 1)
  690. [[User]] **User** __Username__::
  691. On startup, setuid to this user and setgid to their primary group.
  692. Can not be changed while tor is running.
  693. [[KeepBindCapabilities]] **KeepBindCapabilities** **0**|**1**|**auto**::
  694. On Linux, when we are started as root and we switch our identity using
  695. the **User** option, the **KeepBindCapabilities** option tells us whether to
  696. try to retain our ability to bind to low ports. If this value is 1, we
  697. try to keep the capability; if it is 0 we do not; and if it is **auto**,
  698. we keep the capability only if we are configured to listen on a low port.
  699. Can not be changed while tor is running.
  700. (Default: auto.)
  701. [[HardwareAccel]] **HardwareAccel** **0**|**1**::
  702. If non-zero, try to use built-in (static) crypto hardware acceleration when
  703. available. Can not be changed while tor is running. (Default: 0)
  704. [[AccelName]] **AccelName** __NAME__::
  705. When using OpenSSL hardware crypto acceleration attempt to load the dynamic
  706. engine of this name. This must be used for any dynamic hardware engine.
  707. Names can be verified with the openssl engine command. Can not be changed
  708. while tor is running.
  709. [[AccelDir]] **AccelDir** __DIR__::
  710. Specify this option if using dynamic hardware acceleration and the engine
  711. implementation library resides somewhere other than the OpenSSL default.
  712. Can not be changed while tor is running.
  713. [[AvoidDiskWrites]] **AvoidDiskWrites** **0**|**1**::
  714. If non-zero, try to write to disk less frequently than we would otherwise.
  715. This is useful when running on flash memory or other media that support
  716. only a limited number of writes. (Default: 0)
  717. [[CircuitPriorityHalflife]] **CircuitPriorityHalflife** __NUM__::
  718. If this value is set, we override the default algorithm for choosing which
  719. circuit's cell to deliver or relay next. It is delivered first to the
  720. circuit that has the lowest weighted cell count, where cells are weighted
  721. exponentially according to this value (in seconds). If the value is -1, it
  722. is taken from the consensus if possible else it will fallback to the
  723. default value of 30. Minimum: 1, Maximum: 2147483647. This can be defined
  724. as a float value. This is an advanced option; you generally shouldn't have
  725. to mess with it. (Default: -1)
  726. [[CountPrivateBandwidth]] **CountPrivateBandwidth** **0**|**1**::
  727. If this option is set, then Tor's rate-limiting applies not only to
  728. remote connections, but also to connections to private addresses like
  729. 127.0.0.1 or 10.0.0.1. This is mostly useful for debugging
  730. rate-limiting. (Default: 0)
  731. [[ExtendByEd25519ID]] **ExtendByEd25519ID** **0**|**1**|**auto**::
  732. If this option is set to 1, we always try to include a relay's Ed25519 ID
  733. when telling the proceeding relay in a circuit to extend to it.
  734. If this option is set to 0, we never include Ed25519 IDs when extending
  735. circuits. If the option is set to "default", we obey a
  736. parameter in the consensus document. (Default: auto)
  737. [[NoExec]] **NoExec** **0**|**1**::
  738. If this option is set to 1, then Tor will never launch another
  739. executable, regardless of the settings of ClientTransportPlugin
  740. or ServerTransportPlugin. Once this option has been set to 1,
  741. it cannot be set back to 0 without restarting Tor. (Default: 0)
  742. [[Schedulers]] **Schedulers** **KIST**|**KISTLite**|**Vanilla**::
  743. Specify the scheduler type that tor should use. The scheduler is
  744. responsible for moving data around within a Tor process. This is an ordered
  745. list by priority which means that the first value will be tried first and if
  746. unavailable, the second one is tried and so on. It is possible to change
  747. these values at runtime. This option mostly effects relays, and most
  748. operators should leave it set to its default value.
  749. (Default: KIST,KISTLite,Vanilla)
  750. +
  751. The possible scheduler types are:
  752. +
  753. **KIST**: Kernel-Informed Socket Transport. Tor will use TCP information
  754. from the kernel to make informed decisions regarding how much data to send
  755. and when to send it. KIST also handles traffic in batches (see
  756. KISTSchedRunInterval) in order to improve traffic prioritization decisions.
  757. As implemented, KIST will only work on Linux kernel version 2.6.39 or
  758. higher.
  759. +
  760. **KISTLite**: Same as KIST but without kernel support. Tor will use all
  761. the same mechanics as with KIST, including the batching, but its decisions
  762. regarding how much data to send will not be as good. KISTLite will work on
  763. all kernels and operating systems, and the majority of the benefits of KIST
  764. are still realized with KISTLite.
  765. +
  766. **Vanilla**: The scheduler that Tor used before KIST was implemented. It
  767. sends as much data as possible, as soon as possible. Vanilla will work on
  768. all kernels and operating systems.
  769. [[KISTSchedRunInterval]] **KISTSchedRunInterval** __NUM__ **msec**::
  770. If KIST or KISTLite is used in the Schedulers option, this controls at which
  771. interval the scheduler tick is. If the value is 0 msec, the value is taken
  772. from the consensus if possible else it will fallback to the default 10
  773. msec. Maximum possible value is 100 msec. (Default: 0 msec)
  774. [[KISTSockBufSizeFactor]] **KISTSockBufSizeFactor** __NUM__::
  775. If KIST is used in Schedulers, this is a multiplier of the per-socket
  776. limit calculation of the KIST algorithm. (Default: 1.0)
  777. CLIENT OPTIONS
  778. --------------
  779. The following options are useful only for clients (that is, if
  780. **SocksPort**, **HTTPTunnelPort**, **TransPort**, **DNSPort**, or
  781. **NATDPort** is non-zero):
  782. [[Bridge]] **Bridge** [__transport__] __IP__:__ORPort__ [__fingerprint__]::
  783. When set along with UseBridges, instructs Tor to use the relay at
  784. "IP:ORPort" as a "bridge" relaying into the Tor network. If "fingerprint"
  785. is provided (using the same format as for DirAuthority), we will verify that
  786. the relay running at that location has the right fingerprint. We also use
  787. fingerprint to look up the bridge descriptor at the bridge authority, if
  788. it's provided and if UpdateBridgesFromAuthority is set too. +
  789. +
  790. If "transport" is provided, it must match a ClientTransportPlugin line. We
  791. then use that pluggable transport's proxy to transfer data to the bridge,
  792. rather than connecting to the bridge directly. Some transports use a
  793. transport-specific method to work out the remote address to connect to.
  794. These transports typically ignore the "IP:ORPort" specified in the bridge
  795. line. +
  796. +
  797. Tor passes any "key=val" settings to the pluggable transport proxy as
  798. per-connection arguments when connecting to the bridge. Consult
  799. the documentation of the pluggable transport for details of what
  800. arguments it supports.
  801. [[LearnCircuitBuildTimeout]] **LearnCircuitBuildTimeout** **0**|**1**::
  802. If 0, CircuitBuildTimeout adaptive learning is disabled. (Default: 1)
  803. [[CircuitBuildTimeout]] **CircuitBuildTimeout** __NUM__::
  804. Try for at most NUM seconds when building circuits. If the circuit isn't
  805. open in that time, give up on it. If LearnCircuitBuildTimeout is 1, this
  806. value serves as the initial value to use before a timeout is learned. If
  807. LearnCircuitBuildTimeout is 0, this value is the only value used.
  808. (Default: 60 seconds)
  809. [[CircuitsAvailableTimeout]] **CircuitsAvailableTimeout** __NUM__::
  810. Tor will attempt to keep at least one open, unused circuit available for
  811. this amount of time. This option governs how long idle circuits are kept
  812. open, as well as the amount of time Tor will keep a circuit open to each
  813. of the recently used ports. This way when the Tor client is entirely
  814. idle, it can expire all of its circuits, and then expire its TLS
  815. connections. Note that the actual timeout value is uniformly randomized
  816. from the specified value to twice that amount. (Default: 30 minutes;
  817. Max: 24 hours)
  818. [[CircuitStreamTimeout]] **CircuitStreamTimeout** __NUM__::
  819. If non-zero, this option overrides our internal timeout schedule for how
  820. many seconds until we detach a stream from a circuit and try a new circuit.
  821. If your network is particularly slow, you might want to set this to a
  822. number like 60. (Default: 0)
  823. [[ClientOnly]] **ClientOnly** **0**|**1**::
  824. If set to 1, Tor will not run as a relay or serve
  825. directory requests, even if the ORPort, ExtORPort, or DirPort options are
  826. set. (This config option is
  827. mostly unnecessary: we added it back when we were considering having
  828. Tor clients auto-promote themselves to being relays if they were stable
  829. and fast enough. The current behavior is simply that Tor is a client
  830. unless ORPort, ExtORPort, or DirPort are configured.) (Default: 0)
  831. [[ConnectionPadding]] **ConnectionPadding** **0**|**1**|**auto**::
  832. This option governs Tor's use of padding to defend against some forms of
  833. traffic analysis. If it is set to 'auto', Tor will send padding only
  834. if both the client and the relay support it. If it is set to 0, Tor will
  835. not send any padding cells. If it is set to 1, Tor will still send padding
  836. for client connections regardless of relay support. Only clients may set
  837. this option. This option should be offered via the UI to mobile users
  838. for use where bandwidth may be expensive.
  839. (Default: auto)
  840. [[ReducedConnectionPadding]] **ReducedConnectionPadding** **0**|**1**::
  841. If set to 1, Tor will not not hold OR connections open for very long,
  842. and will send less padding on these connections. Only clients may set
  843. this option. This option should be offered via the UI to mobile users
  844. for use where bandwidth may be expensive. (Default: 0)
  845. [[CircuitPadding]] **CircuitPadding** **0**|**1**::
  846. If set to 0, Tor will not pad client circuits with additional cover
  847. traffic. Only clients may set this option. This option should be offered
  848. via the UI to mobile users for use where bandwidth may be expensive. If
  849. set to 1, padding will be negotiated as per the consensus and relay
  850. support (unlike ConnectionPadding, CircuitPadding cannot be force-enabled).
  851. (Default: 1)
  852. [[ReducedCircuitPadding]] **ReducedCircuitPadding** **0**|**1**::
  853. If set to 1, Tor will only use circuit padding algorithms that have low
  854. overhead. Only clients may set this option. This option should be offered
  855. via the UI to mobile users for use where bandwidth may be expensive.
  856. (Default: 0)
  857. [[ExcludeNodes]] **ExcludeNodes** __node__,__node__,__...__::
  858. A list of identity fingerprints, country codes, and address
  859. patterns of nodes to avoid when building a circuit. Country codes are
  860. 2-letter ISO3166 codes, and must
  861. be wrapped in braces; fingerprints may be preceded by a dollar sign.
  862. (Example:
  863. ExcludeNodes ABCD1234CDEF5678ABCD1234CDEF5678ABCD1234, \{cc}, 255.254.0.0/8) +
  864. +
  865. By default, this option is treated as a preference that Tor is allowed
  866. to override in order to keep working.
  867. For example, if you try to connect to a hidden service,
  868. but you have excluded all of the hidden service's introduction points,
  869. Tor will connect to one of them anyway. If you do not want this
  870. behavior, set the StrictNodes option (documented below). +
  871. +
  872. Note also that if you are a relay, this (and the other node selection
  873. options below) only affects your own circuits that Tor builds for you.
  874. Clients can still build circuits through you to any node. Controllers
  875. can tell Tor to build circuits through any node. +
  876. +
  877. Country codes are case-insensitive. The code "\{??}" refers to nodes whose
  878. country can't be identified. No country code, including \{??}, works if
  879. no GeoIPFile can be loaded. See also the GeoIPExcludeUnknown option below.
  880. [[ExcludeExitNodes]] **ExcludeExitNodes** __node__,__node__,__...__::
  881. A list of identity fingerprints, country codes, and address
  882. patterns of nodes to never use when picking an exit node---that is, a
  883. node that delivers traffic for you *outside* the Tor network. Note that any
  884. node listed in ExcludeNodes is automatically considered to be part of this
  885. list too. See
  886. the **ExcludeNodes** option for more information on how to specify
  887. nodes. See also the caveats on the "ExitNodes" option below.
  888. [[GeoIPExcludeUnknown]] **GeoIPExcludeUnknown** **0**|**1**|**auto**::
  889. If this option is set to 'auto', then whenever any country code is set in
  890. ExcludeNodes or ExcludeExitNodes, all nodes with unknown country (\{??} and
  891. possibly \{A1}) are treated as excluded as well. If this option is set to
  892. '1', then all unknown countries are treated as excluded in ExcludeNodes
  893. and ExcludeExitNodes. This option has no effect when a GeoIP file isn't
  894. configured or can't be found. (Default: auto)
  895. [[ExitNodes]] **ExitNodes** __node__,__node__,__...__::
  896. A list of identity fingerprints, country codes, and address
  897. patterns of nodes to use as exit node---that is, a
  898. node that delivers traffic for you *outside* the Tor network. See
  899. the **ExcludeNodes** option for more information on how to specify nodes. +
  900. +
  901. Note that if you list too few nodes here, or if you exclude too many exit
  902. nodes with ExcludeExitNodes, you can degrade functionality. For example,
  903. if none of the exits you list allows traffic on port 80 or 443, you won't
  904. be able to browse the web. +
  905. +
  906. Note also that not every circuit is used to deliver traffic *outside* of
  907. the Tor network. It is normal to see non-exit circuits (such as those
  908. used to connect to hidden services, those that do directory fetches,
  909. those used for relay reachability self-tests, and so on) that end
  910. at a non-exit node. To
  911. keep a node from being used entirely, see ExcludeNodes and StrictNodes. +
  912. +
  913. The ExcludeNodes option overrides this option: any node listed in both
  914. ExitNodes and ExcludeNodes is treated as excluded. +
  915. +
  916. The .exit address notation, if enabled via MapAddress, overrides
  917. this option.
  918. [[MiddleNodes]] **MiddleNodes** __node__,__node__,__...__::
  919. A list of identity fingerprints and country codes of nodes
  920. to use for "middle" hops in your normal circuits.
  921. Normal circuits include all circuits except for direct connections
  922. to directory servers. Middle hops are all hops other than exit and entry. +
  923. +
  924. This is an **experimental** feature that is meant to be used by researchers
  925. and developers to test new features in the Tor network safely. Using it
  926. without care will strongly influence your anonymity. This feature might get
  927. removed in the future.
  928. +
  929. The HSLayer2Node and HSLayer3Node options override this option for onion
  930. service circuits, if they are set. The vanguards addon will read this
  931. option, and if set, it will set HSLayer2Nodes and HSLayer3Nodes to nodes
  932. from this set.
  933. +
  934. The ExcludeNodes option overrides this option: any node listed in both
  935. MiddleNodes and ExcludeNodes is treated as excluded. See
  936. the **ExcludeNodes** option for more information on how to specify nodes.
  937. [[EntryNodes]] **EntryNodes** __node__,__node__,__...__::
  938. A list of identity fingerprints and country codes of nodes
  939. to use for the first hop in your normal circuits.
  940. Normal circuits include all
  941. circuits except for direct connections to directory servers. The Bridge
  942. option overrides this option; if you have configured bridges and
  943. UseBridges is 1, the Bridges are used as your entry nodes. +
  944. +
  945. The ExcludeNodes option overrides this option: any node listed in both
  946. EntryNodes and ExcludeNodes is treated as excluded. See
  947. the **ExcludeNodes** option for more information on how to specify nodes.
  948. [[StrictNodes]] **StrictNodes** **0**|**1**::
  949. If StrictNodes is set to 1, Tor will treat solely the ExcludeNodes option
  950. as a requirement to follow for all the circuits you generate, even if
  951. doing so will break functionality for you (StrictNodes does not apply to
  952. ExcludeExitNodes, ExitNodes, MiddleNodes, or MapAddress). If StrictNodes
  953. is set to 0, Tor will still try to avoid nodes in the ExcludeNodes list,
  954. but it will err on the side of avoiding unexpected errors.
  955. Specifically, StrictNodes 0 tells Tor that it is okay to use an excluded
  956. node when it is *necessary* to perform relay reachability self-tests,
  957. connect to a hidden service, provide a hidden service to a client,
  958. fulfill a .exit request, upload directory information, or download
  959. directory information. (Default: 0)
  960. [[FascistFirewall]] **FascistFirewall** **0**|**1**::
  961. If 1, Tor will only create outgoing connections to ORs running on ports
  962. that your firewall allows (defaults to 80 and 443; see **FirewallPorts**).
  963. This will allow you to run Tor as a client behind a firewall with
  964. restrictive policies, but will not allow you to run as a server behind such
  965. a firewall. If you prefer more fine-grained control, use
  966. ReachableAddresses instead.
  967. [[FirewallPorts]] **FirewallPorts** __PORTS__::
  968. A list of ports that your firewall allows you to connect to. Only used when
  969. **FascistFirewall** is set. This option is deprecated; use ReachableAddresses
  970. instead. (Default: 80, 443)
  971. [[ReachableAddresses]] **ReachableAddresses** __IP__[/__MASK__][:__PORT__]...::
  972. A comma-separated list of IP addresses and ports that your firewall allows
  973. you to connect to. The format is as for the addresses in ExitPolicy, except
  974. that "accept" is understood unless "reject" is explicitly provided. For
  975. example, \'ReachableAddresses 99.0.0.0/8, reject 18.0.0.0/8:80, accept
  976. \*:80' means that your firewall allows connections to everything inside net
  977. 99, rejects port 80 connections to net 18, and accepts connections to port
  978. 80 otherwise. (Default: \'accept \*:*'.)
  979. [[ReachableDirAddresses]] **ReachableDirAddresses** __IP__[/__MASK__][:__PORT__]...::
  980. Like **ReachableAddresses**, a list of addresses and ports. Tor will obey
  981. these restrictions when fetching directory information, using standard HTTP
  982. GET requests. If not set explicitly then the value of
  983. **ReachableAddresses** is used. If **HTTPProxy** is set then these
  984. connections will go through that proxy. (DEPRECATED: This option has
  985. had no effect for some time.)
  986. [[ReachableORAddresses]] **ReachableORAddresses** __IP__[/__MASK__][:__PORT__]...::
  987. Like **ReachableAddresses**, a list of addresses and ports. Tor will obey
  988. these restrictions when connecting to Onion Routers, using TLS/SSL. If not
  989. set explicitly then the value of **ReachableAddresses** is used. If
  990. **HTTPSProxy** is set then these connections will go through that proxy. +
  991. +
  992. The separation between **ReachableORAddresses** and
  993. **ReachableDirAddresses** is only interesting when you are connecting
  994. through proxies (see **HTTPProxy** and **HTTPSProxy**). Most proxies limit
  995. TLS connections (which Tor uses to connect to Onion Routers) to port 443,
  996. and some limit HTTP GET requests (which Tor uses for fetching directory
  997. information) to port 80.
  998. [[HidServAuth]] **HidServAuth** __onion-address__ __auth-cookie__ [__service-name__]::
  999. Client authorization for a v2 hidden service. Valid onion addresses contain 16
  1000. characters in a-z2-7 plus ".onion", and valid auth cookies contain 22
  1001. characters in A-Za-z0-9+/. The service name is only used for internal
  1002. purposes, e.g., for Tor controllers. This option may be used multiple times
  1003. for different hidden services. If a hidden service uses authorization and
  1004. this option is not set, the hidden service is not accessible. Hidden
  1005. services can be configured to require authorization using the
  1006. **HiddenServiceAuthorizeClient** option.
  1007. [[ClientOnionAuthDir]] **ClientOnionAuthDir** __path__::
  1008. Path to the directory containing v3 hidden service authorization files.
  1009. Each file is for a single onion address, and the files MUST have the suffix
  1010. ".auth_private" (i.e. "bob_onion.auth_private"). The content format MUST be:
  1011. +
  1012. <onion-address>:descriptor:x25519:<base32-encoded-privkey>
  1013. +
  1014. The <onion-address> MUST NOT have the ".onion" suffix. The
  1015. <base32-encoded-privkey> is the base32 representation of the raw key bytes
  1016. only (32 bytes for x25519). See Appendix G in the rend-spec-v3.txt file of
  1017. https://spec.torproject.org/[torspec] for more information.
  1018. [[LongLivedPorts]] **LongLivedPorts** __PORTS__::
  1019. A list of ports for services that tend to have long-running connections
  1020. (e.g. chat and interactive shells). Circuits for streams that use these
  1021. ports will contain only high-uptime nodes, to reduce the chance that a node
  1022. will go down before the stream is finished. Note that the list is also
  1023. honored for circuits (both client and service side) involving hidden
  1024. services whose virtual port is in this list. (Default: 21, 22, 706,
  1025. 1863, 5050, 5190, 5222, 5223, 6523, 6667, 6697, 8300)
  1026. [[MapAddress]] **MapAddress** __address__ __newaddress__::
  1027. When a request for address arrives to Tor, it will transform to newaddress
  1028. before processing it. For example, if you always want connections to
  1029. www.example.com to exit via __torserver__ (where __torserver__ is the
  1030. fingerprint of the server), use "MapAddress www.example.com
  1031. www.example.com.torserver.exit". If the value is prefixed with a
  1032. "\*.", matches an entire domain. For example, if you
  1033. always want connections to example.com and any if its subdomains
  1034. to exit via
  1035. __torserver__ (where __torserver__ is the fingerprint of the server), use
  1036. "MapAddress \*.example.com \*.example.com.torserver.exit". (Note the
  1037. leading "*." in each part of the directive.) You can also redirect all
  1038. subdomains of a domain to a single address. For example, "MapAddress
  1039. *.example.com www.example.com". If the specified exit is not available,
  1040. or the exit can not connect to the site, Tor will fail any connections
  1041. to the mapped address.+
  1042. +
  1043. NOTES:
  1044. 1. When evaluating MapAddress expressions Tor stops when it hits the most
  1045. recently added expression that matches the requested address. So if you
  1046. have the following in your torrc, www.torproject.org will map to
  1047. 198.51.100.1:
  1048. MapAddress www.torproject.org 192.0.2.1
  1049. MapAddress www.torproject.org 198.51.100.1
  1050. 2. Tor evaluates the MapAddress configuration until it finds no matches. So
  1051. if you have the following in your torrc, www.torproject.org will map to
  1052. 203.0.113.1:
  1053. MapAddress 198.51.100.1 203.0.113.1
  1054. MapAddress www.torproject.org 198.51.100.1
  1055. 3. The following MapAddress expression is invalid (and will be
  1056. ignored) because you cannot map from a specific address to a wildcard
  1057. address:
  1058. MapAddress www.torproject.org *.torproject.org.torserver.exit
  1059. 4. Using a wildcard to match only part of a string (as in *ample.com) is
  1060. also invalid.
  1061. 5. Tor maps hostnames and IP addresses separately. If you MapAddress
  1062. a DNS name, but use an IP address to connect, then Tor will ignore the
  1063. DNS name mapping.
  1064. 6. MapAddress does not apply to redirects in the application protocol.
  1065. For example, HTTP redirects and alt-svc headers will ignore mappings
  1066. for the original address. You can use a wildcard mapping to handle
  1067. redirects within the same site.
  1068. [[NewCircuitPeriod]] **NewCircuitPeriod** __NUM__::
  1069. Every NUM seconds consider whether to build a new circuit. (Default: 30
  1070. seconds)
  1071. [[MaxCircuitDirtiness]] **MaxCircuitDirtiness** __NUM__::
  1072. Feel free to reuse a circuit that was first used at most NUM seconds ago,
  1073. but never attach a new stream to a circuit that is too old. For hidden
  1074. services, this applies to the __last__ time a circuit was used, not the
  1075. first. Circuits with streams constructed with SOCKS authentication via
  1076. SocksPorts that have **KeepAliveIsolateSOCKSAuth** also remain alive
  1077. for MaxCircuitDirtiness seconds after carrying the last such stream.
  1078. (Default: 10 minutes)
  1079. [[MaxClientCircuitsPending]] **MaxClientCircuitsPending** __NUM__::
  1080. Do not allow more than NUM circuits to be pending at a time for handling
  1081. client streams. A circuit is pending if we have begun constructing it,
  1082. but it has not yet been completely constructed. (Default: 32)
  1083. [[NodeFamily]] **NodeFamily** __node__,__node__,__...__::
  1084. The Tor servers, defined by their identity fingerprints,
  1085. constitute a "family" of similar or co-administered servers, so never use
  1086. any two of them in the same circuit. Defining a NodeFamily is only needed
  1087. when a server doesn't list the family itself (with MyFamily). This option
  1088. can be used multiple times; each instance defines a separate family. In
  1089. addition to nodes, you can also list IP address and ranges and country
  1090. codes in {curly braces}. See the **ExcludeNodes** option for more
  1091. information on how to specify nodes.
  1092. [[EnforceDistinctSubnets]] **EnforceDistinctSubnets** **0**|**1**::
  1093. If 1, Tor will not put two servers whose IP addresses are "too close" on
  1094. the same circuit. Currently, two addresses are "too close" if they lie in
  1095. the same /16 range. (Default: 1)
  1096. [[SocksPort]] **SocksPort** \['address':]__port__|**unix:**__path__|**auto** [_flags_] [_isolation flags_]::
  1097. Open this port to listen for connections from SOCKS-speaking
  1098. applications. Set this to 0 if you don't want to allow application
  1099. connections via SOCKS. Set it to "auto" to have Tor pick a port for
  1100. you. This directive can be specified multiple times to bind
  1101. to multiple addresses/ports. If a unix domain socket is used, you may
  1102. quote the path using standard C escape sequences.
  1103. (Default: 9050) +
  1104. +
  1105. NOTE: Although this option allows you to specify an IP address
  1106. other than localhost, you should do so only with extreme caution.
  1107. The SOCKS protocol is unencrypted and (as we use it)
  1108. unauthenticated, so exposing it in this way could leak your
  1109. information to anybody watching your network, and allow anybody
  1110. to use your computer as an open proxy. +
  1111. +
  1112. If multiple entries of this option are present in your configuration
  1113. file, Tor will perform stream isolation between listeners by default.
  1114. The _isolation flags_ arguments give Tor rules for which streams
  1115. received on this SocksPort are allowed to share circuits with one
  1116. another. Recognized isolation flags are:
  1117. **IsolateClientAddr**;;
  1118. Don't share circuits with streams from a different
  1119. client address. (On by default and strongly recommended when
  1120. supported; you can disable it with **NoIsolateClientAddr**.
  1121. Unsupported and force-disabled when using Unix domain sockets.)
  1122. **IsolateSOCKSAuth**;;
  1123. Don't share circuits with streams for which different
  1124. SOCKS authentication was provided. (For HTTPTunnelPort
  1125. connections, this option looks at the Proxy-Authorization and
  1126. X-Tor-Stream-Isolation headers. On by default;
  1127. you can disable it with **NoIsolateSOCKSAuth**.)
  1128. **IsolateClientProtocol**;;
  1129. Don't share circuits with streams using a different protocol.
  1130. (SOCKS 4, SOCKS 5, TransPort connections, NATDPort connections,
  1131. and DNSPort requests are all considered to be different protocols.)
  1132. **IsolateDestPort**;;
  1133. Don't share circuits with streams targeting a different
  1134. destination port.
  1135. **IsolateDestAddr**;;
  1136. Don't share circuits with streams targeting a different
  1137. destination address.
  1138. **KeepAliveIsolateSOCKSAuth**;;
  1139. If **IsolateSOCKSAuth** is enabled, keep alive circuits while they have
  1140. at least one stream with SOCKS authentication active. After such a circuit
  1141. is idle for more than MaxCircuitDirtiness seconds, it can be closed.
  1142. **SessionGroup=**__INT__;;
  1143. If no other isolation rules would prevent it, allow streams
  1144. on this port to share circuits with streams from every other
  1145. port with the same session group. (By default, streams received
  1146. on different SocksPorts, TransPorts, etc are always isolated from one
  1147. another. This option overrides that behavior.)
  1148. // Anchor only for formatting, not visible in the man page.
  1149. [[OtherSocksPortFlags]]::
  1150. Other recognized __flags__ for a SocksPort are:
  1151. **NoIPv4Traffic**;;
  1152. Tell exits to not connect to IPv4 addresses in response to SOCKS
  1153. requests on this connection.
  1154. **IPv6Traffic**;;
  1155. Tell exits to allow IPv6 addresses in response to SOCKS requests on
  1156. this connection, so long as SOCKS5 is in use. (SOCKS4 can't handle
  1157. IPv6.)
  1158. **PreferIPv6**;;
  1159. Tells exits that, if a host has both an IPv4 and an IPv6 address,
  1160. we would prefer to connect to it via IPv6. (IPv4 is the default.)
  1161. **NoDNSRequest**;;
  1162. Do not ask exits to resolve DNS addresses in SOCKS5 requests. Tor will
  1163. connect to IPv4 addresses, IPv6 addresses (if IPv6Traffic is set) and
  1164. .onion addresses.
  1165. **NoOnionTraffic**;;
  1166. Do not connect to .onion addresses in SOCKS5 requests.
  1167. **OnionTrafficOnly**;;
  1168. Tell the tor client to only connect to .onion addresses in response to
  1169. SOCKS5 requests on this connection. This is equivalent to NoDNSRequest,
  1170. NoIPv4Traffic, NoIPv6Traffic. The corresponding NoOnionTrafficOnly
  1171. flag is not supported.
  1172. **CacheIPv4DNS**;;
  1173. Tells the client to remember IPv4 DNS answers we receive from exit
  1174. nodes via this connection.
  1175. **CacheIPv6DNS**;;
  1176. Tells the client to remember IPv6 DNS answers we receive from exit
  1177. nodes via this connection.
  1178. **GroupWritable**;;
  1179. Unix domain sockets only: makes the socket get created as
  1180. group-writable.
  1181. **WorldWritable**;;
  1182. Unix domain sockets only: makes the socket get created as
  1183. world-writable.
  1184. **CacheDNS**;;
  1185. Tells the client to remember all DNS answers we receive from exit
  1186. nodes via this connection.
  1187. **UseIPv4Cache**;;
  1188. Tells the client to use any cached IPv4 DNS answers we have when making
  1189. requests via this connection. (NOTE: This option, or UseIPv6Cache
  1190. or UseDNSCache, can harm your anonymity, and probably
  1191. won't help performance as much as you might expect. Use with care!)
  1192. **UseIPv6Cache**;;
  1193. Tells the client to use any cached IPv6 DNS answers we have when making
  1194. requests via this connection.
  1195. **UseDNSCache**;;
  1196. Tells the client to use any cached DNS answers we have when making
  1197. requests via this connection.
  1198. **PreferIPv6Automap**;;
  1199. When serving a hostname lookup request on this port that
  1200. should get automapped (according to AutomapHostsOnResolve),
  1201. if we could return either an IPv4 or an IPv6 answer, prefer
  1202. an IPv6 answer. (On by default.)
  1203. **PreferSOCKSNoAuth**;;
  1204. Ordinarily, when an application offers both "username/password
  1205. authentication" and "no authentication" to Tor via SOCKS5, Tor
  1206. selects username/password authentication so that IsolateSOCKSAuth can
  1207. work. This can confuse some applications, if they offer a
  1208. username/password combination then get confused when asked for
  1209. one. You can disable this behavior, so that Tor will select "No
  1210. authentication" when IsolateSOCKSAuth is disabled, or when this
  1211. option is set.
  1212. // Anchor only for formatting, not visible in the man page.
  1213. [[SocksPortFlagsMisc]]::
  1214. Flags are processed left to right. If flags conflict, the last flag on the
  1215. line is used, and all earlier flags are ignored. No error is issued for
  1216. conflicting flags.
  1217. [[SocksPolicy]] **SocksPolicy** __policy__,__policy__,__...__::
  1218. Set an entrance policy for this server, to limit who can connect to the
  1219. SocksPort and DNSPort ports. The policies have the same form as exit
  1220. policies below, except that port specifiers are ignored. Any address
  1221. not matched by some entry in the policy is accepted.
  1222. [[SocksTimeout]] **SocksTimeout** __NUM__::
  1223. Let a socks connection wait NUM seconds handshaking, and NUM seconds
  1224. unattached waiting for an appropriate circuit, before we fail it. (Default:
  1225. 2 minutes)
  1226. [[TokenBucketRefillInterval]] **TokenBucketRefillInterval** __NUM__ [**msec**|**second**]::
  1227. Set the refill delay interval of Tor's token bucket to NUM milliseconds.
  1228. NUM must be between 1 and 1000, inclusive. When Tor is out of bandwidth,
  1229. on a connection or globally, it will wait up to this long before it tries
  1230. to use that connection again.
  1231. Note that bandwidth limits are still expressed in bytes per second: this
  1232. option only affects the frequency with which Tor checks to see whether
  1233. previously exhausted connections may read again.
  1234. Can not be changed while tor is running. (Default: 100 msec)
  1235. [[TrackHostExits]] **TrackHostExits** __host__,__.domain__,__...__::
  1236. For each value in the comma separated list, Tor will track recent
  1237. connections to hosts that match this value and attempt to reuse the same
  1238. exit node for each. If the value is prepended with a \'.\', it is treated as
  1239. matching an entire domain. If one of the values is just a \'.', it means
  1240. match everything. This option is useful if you frequently connect to sites
  1241. that will expire all your authentication cookies (i.e. log you out) if
  1242. your IP address changes. Note that this option does have the disadvantage
  1243. of making it more clear that a given history is associated with a single
  1244. user. However, most people who would wish to observe this will observe it
  1245. through cookies or other protocol-specific means anyhow.
  1246. [[TrackHostExitsExpire]] **TrackHostExitsExpire** __NUM__::
  1247. Since exit servers go up and down, it is desirable to expire the
  1248. association between host and exit server after NUM seconds. The default is
  1249. 1800 seconds (30 minutes).
  1250. [[UpdateBridgesFromAuthority]] **UpdateBridgesFromAuthority** **0**|**1**::
  1251. When set (along with UseBridges), Tor will try to fetch bridge descriptors
  1252. from the configured bridge authorities when feasible. It will fall back to
  1253. a direct request if the authority responds with a 404. (Default: 0)
  1254. [[UseBridges]] **UseBridges** **0**|**1**::
  1255. When set, Tor will fetch descriptors for each bridge listed in the "Bridge"
  1256. config lines, and use these relays as both entry guards and directory
  1257. guards. (Default: 0)
  1258. [[UseEntryGuards]] **UseEntryGuards** **0**|**1**::
  1259. If this option is set to 1, we pick a few long-term entry servers, and try
  1260. to stick with them. This is desirable because constantly changing servers
  1261. increases the odds that an adversary who owns some servers will observe a
  1262. fraction of your paths. Entry Guards can not be used by Directory
  1263. Authorities or Single Onion Services. In these cases,
  1264. this option is ignored. (Default: 1)
  1265. [[GuardfractionFile]] **GuardfractionFile** __FILENAME__::
  1266. V3 authoritative directories only. Configures the location of the
  1267. guardfraction file which contains information about how long relays
  1268. have been guards. (Default: unset)
  1269. [[UseGuardFraction]] **UseGuardFraction** **0**|**1**|**auto**::
  1270. This option specifies whether clients should use the
  1271. guardfraction information found in the consensus during path
  1272. selection. If it's set to 'auto', clients will do what the
  1273. UseGuardFraction consensus parameter tells them to do. (Default: auto)
  1274. [[NumEntryGuards]] **NumEntryGuards** __NUM__::
  1275. If UseEntryGuards is set to 1, we will try to pick a total of NUM routers
  1276. as long-term entries for our circuits. If NUM is 0, we try to learn the
  1277. number from the guard-n-primary-guards-to-use consensus parameter, and
  1278. default to 1 if the consensus parameter isn't set. (Default: 0)
  1279. [[NumPrimaryGuards]] **NumPrimaryGuards** __NUM__::
  1280. If UseEntryGuards is set to 1, we will try to pick NUM routers for our
  1281. primary guard list, which is the set of routers we strongly prefer when
  1282. connecting to the Tor network. If NUM is 0, we try to learn the number from
  1283. the guard-n-primary-guards consensus parameter, and default to 3 if the
  1284. consensus parameter isn't set. (Default: 0)
  1285. [[NumDirectoryGuards]] **NumDirectoryGuards** __NUM__::
  1286. If UseEntryGuards is set to 1, we try to make sure we have at least NUM
  1287. routers to use as directory guards. If this option is set to 0, use the
  1288. value from the guard-n-primary-dir-guards-to-use consensus parameter, and
  1289. default to 3 if the consensus parameter isn't set. (Default: 0)
  1290. [[GuardLifetime]] **GuardLifetime** __N__ **days**|**weeks**|**months**::
  1291. If nonzero, and UseEntryGuards is set, minimum time to keep a guard before
  1292. picking a new one. If zero, we use the GuardLifetime parameter from the
  1293. consensus directory. No value here may be less than 1 month or greater
  1294. than 5 years; out-of-range values are clamped. (Default: 0)
  1295. [[SafeSocks]] **SafeSocks** **0**|**1**::
  1296. When this option is enabled, Tor will reject application connections that
  1297. use unsafe variants of the socks protocol -- ones that only provide an IP
  1298. address, meaning the application is doing a DNS resolve first.
  1299. Specifically, these are socks4 and socks5 when not doing remote DNS.
  1300. (Default: 0)
  1301. [[TestSocks]] **TestSocks** **0**|**1**::
  1302. When this option is enabled, Tor will make a notice-level log entry for
  1303. each connection to the Socks port indicating whether the request used a
  1304. safe socks protocol or an unsafe one (see above entry on SafeSocks). This
  1305. helps to determine whether an application using Tor is possibly leaking
  1306. DNS requests. (Default: 0)
  1307. [[VirtualAddrNetworkIPv4]] **VirtualAddrNetworkIPv4** __IPv4Address__/__bits__ +
  1308. [[VirtualAddrNetworkIPv6]] **VirtualAddrNetworkIPv6** [__IPv6Address__]/__bits__::
  1309. When Tor needs to assign a virtual (unused) address because of a MAPADDRESS
  1310. command from the controller or the AutomapHostsOnResolve feature, Tor
  1311. picks an unassigned address from this range. (Defaults:
  1312. 127.192.0.0/10 and [FE80::]/10 respectively.) +
  1313. +
  1314. When providing proxy server service to a network of computers using a tool
  1315. like dns-proxy-tor, change the IPv4 network to "10.192.0.0/10" or
  1316. "172.16.0.0/12" and change the IPv6 network to "[FC00::]/7".
  1317. The default **VirtualAddrNetwork** address ranges on a
  1318. properly configured machine will route to the loopback or link-local
  1319. interface. The maximum number of bits for the network prefix is set to 104
  1320. for IPv6 and 16 for IPv4. However, a wider network - smaller prefix length
  1321. - is preferable since it reduces the chances for an attacker to guess the
  1322. used IP. For local use, no change to the default VirtualAddrNetwork setting
  1323. is needed.
  1324. [[AllowNonRFC953Hostnames]] **AllowNonRFC953Hostnames** **0**|**1**::
  1325. When this option is disabled, Tor blocks hostnames containing illegal
  1326. characters (like @ and :) rather than sending them to an exit node to be
  1327. resolved. This helps trap accidental attempts to resolve URLs and so on.
  1328. (Default: 0)
  1329. [[HTTPTunnelPort]] **HTTPTunnelPort** \['address':]__port__|**auto** [_isolation flags_]::
  1330. Open this port to listen for proxy connections using the "HTTP CONNECT"
  1331. protocol instead of SOCKS. Set this to
  1332. 0 if you don't want to allow "HTTP CONNECT" connections. Set the port
  1333. to "auto" to have Tor pick a port for you. This directive can be
  1334. specified multiple times to bind to multiple addresses/ports. If multiple
  1335. entries of this option are present in your configuration file, Tor will
  1336. perform stream isolation between listeners by default. See
  1337. SOCKSPort for an explanation of isolation flags. (Default: 0)
  1338. [[TransPort]] **TransPort** \['address':]__port__|**auto** [_isolation flags_]::
  1339. Open this port to listen for transparent proxy connections. Set this to
  1340. 0 if you don't want to allow transparent proxy connections. Set the port
  1341. to "auto" to have Tor pick a port for you. This directive can be
  1342. specified multiple times to bind to multiple addresses/ports. If multiple
  1343. entries of this option are present in your configuration file, Tor will
  1344. perform stream isolation between listeners by default. See
  1345. SOCKSPort for an explanation of isolation flags. +
  1346. +
  1347. TransPort requires OS support for transparent proxies, such as BSDs' pf or
  1348. Linux's IPTables. If you're planning to use Tor as a transparent proxy for
  1349. a network, you'll want to examine and change VirtualAddrNetwork from the
  1350. default setting. (Default: 0)
  1351. [[TransProxyType]] **TransProxyType** **default**|**TPROXY**|**ipfw**|**pf-divert**::
  1352. TransProxyType may only be enabled when there is transparent proxy listener
  1353. enabled. +
  1354. +
  1355. Set this to "TPROXY" if you wish to be able to use the TPROXY Linux module
  1356. to transparently proxy connections that are configured using the TransPort
  1357. option. Detailed information on how to configure the TPROXY
  1358. feature can be found in the Linux kernel source tree in the file
  1359. Documentation/networking/tproxy.txt. +
  1360. +
  1361. Set this option to "ipfw" to use the FreeBSD ipfw interface. +
  1362. +
  1363. On *BSD operating systems when using pf, set this to "pf-divert" to take
  1364. advantage of +divert-to+ rules, which do not modify the packets like
  1365. +rdr-to+ rules do. Detailed information on how to configure pf to use
  1366. +divert-to+ rules can be found in the pf.conf(5) manual page. On OpenBSD,
  1367. +divert-to+ is available to use on versions greater than or equal to
  1368. OpenBSD 4.4. +
  1369. +
  1370. Set this to "default", or leave it unconfigured, to use regular IPTables
  1371. on Linux, or to use pf +rdr-to+ rules on *BSD systems. +
  1372. +
  1373. (Default: "default")
  1374. [[NATDPort]] **NATDPort** \['address':]__port__|**auto** [_isolation flags_]::
  1375. Open this port to listen for connections from old versions of ipfw (as
  1376. included in old versions of FreeBSD, etc) using the NATD protocol.
  1377. Use 0 if you don't want to allow NATD connections. Set the port
  1378. to "auto" to have Tor pick a port for you. This directive can be
  1379. specified multiple times to bind to multiple addresses/ports. If multiple
  1380. entries of this option are present in your configuration file, Tor will
  1381. perform stream isolation between listeners by default. See
  1382. SocksPort for an explanation of isolation flags. +
  1383. +
  1384. This option is only for people who cannot use TransPort. (Default: 0)
  1385. [[AutomapHostsOnResolve]] **AutomapHostsOnResolve** **0**|**1**::
  1386. When this option is enabled, and we get a request to resolve an address
  1387. that ends with one of the suffixes in **AutomapHostsSuffixes**, we map an
  1388. unused virtual address to that address, and return the new virtual address.
  1389. This is handy for making ".onion" addresses work with applications that
  1390. resolve an address and then connect to it. (Default: 0)
  1391. [[AutomapHostsSuffixes]] **AutomapHostsSuffixes** __SUFFIX__,__SUFFIX__,__...__::
  1392. A comma-separated list of suffixes to use with **AutomapHostsOnResolve**.
  1393. The "." suffix is equivalent to "all addresses." (Default: .exit,.onion).
  1394. [[DNSPort]] **DNSPort** \['address':]__port__|**auto** [_isolation flags_]::
  1395. If non-zero, open this port to listen for UDP DNS requests, and resolve
  1396. them anonymously. This port only handles A, AAAA, and PTR requests---it
  1397. doesn't handle arbitrary DNS request types. Set the port to "auto" to
  1398. have Tor pick a port for
  1399. you. This directive can be specified multiple times to bind to multiple
  1400. addresses/ports. See SocksPort for an explanation of isolation
  1401. flags. (Default: 0)
  1402. [[ClientDNSRejectInternalAddresses]] **ClientDNSRejectInternalAddresses** **0**|**1**::
  1403. If true, Tor does not believe any anonymously retrieved DNS answer that
  1404. tells it that an address resolves to an internal address (like 127.0.0.1 or
  1405. 192.168.0.1). This option prevents certain browser-based attacks; it
  1406. is not allowed to be set on the default network. (Default: 1)
  1407. [[ClientRejectInternalAddresses]] **ClientRejectInternalAddresses** **0**|**1**::
  1408. If true, Tor does not try to fulfill requests to connect to an internal
  1409. address (like 127.0.0.1 or 192.168.0.1) __unless an exit node is
  1410. specifically requested__ (for example, via a .exit hostname, or a
  1411. controller request). If true, multicast DNS hostnames for machines on the
  1412. local network (of the form *.local) are also rejected. (Default: 1)
  1413. [[DownloadExtraInfo]] **DownloadExtraInfo** **0**|**1**::
  1414. If true, Tor downloads and caches "extra-info" documents. These documents
  1415. contain information about servers other than the information in their
  1416. regular server descriptors. Tor does not use this information for anything
  1417. itself; to save bandwidth, leave this option turned off. (Default: 0)
  1418. [[WarnPlaintextPorts]] **WarnPlaintextPorts** __port__,__port__,__...__::
  1419. Tells Tor to issue a warnings whenever the user tries to make an anonymous
  1420. connection to one of these ports. This option is designed to alert users
  1421. to services that risk sending passwords in the clear. (Default:
  1422. 23,109,110,143)
  1423. [[RejectPlaintextPorts]] **RejectPlaintextPorts** __port__,__port__,__...__::
  1424. Like WarnPlaintextPorts, but instead of warning about risky port uses, Tor
  1425. will instead refuse to make the connection. (Default: None)
  1426. [[OptimisticData]] **OptimisticData** **0**|**1**|**auto**::
  1427. When this option is set, and Tor is using an exit node that supports
  1428. the feature, it will try optimistically to send data to the exit node
  1429. without waiting for the exit node to report whether the connection
  1430. succeeded. This can save a round-trip time for protocols like HTTP
  1431. where the client talks first. If OptimisticData is set to **auto**,
  1432. Tor will look at the UseOptimisticData parameter in the networkstatus.
  1433. (Default: auto)
  1434. [[HSLayer2Nodes]] **HSLayer2Nodes** __node__,__node__,__...__::
  1435. A list of identity fingerprints, nicknames, country codes, and
  1436. address patterns of nodes that are allowed to be used as the
  1437. second hop in all client or service-side Onion Service circuits.
  1438. This option mitigates attacks where the adversary runs middle nodes
  1439. and induces your client or service to create many circuits, in order
  1440. to discover your primary guard node.
  1441. (Default: Any node in the network may be used in the second hop.)
  1442. +
  1443. (Example:
  1444. HSLayer2Nodes ABCD1234CDEF5678ABCD1234CDEF5678ABCD1234, \{cc}, 255.254.0.0/8) +
  1445. +
  1446. When this is set, the resulting hidden service paths will
  1447. look like:
  1448. +
  1449. C - G - L2 - M - Rend +
  1450. C - G - L2 - M - HSDir +
  1451. C - G - L2 - M - Intro +
  1452. S - G - L2 - M - Rend +
  1453. S - G - L2 - M - HSDir +
  1454. S - G - L2 - M - Intro +
  1455. +
  1456. where C is this client, S is the service, G is the Guard node,
  1457. L2 is a node from this option, and M is a random middle node.
  1458. Rend, HSDir, and Intro point selection is not affected by this
  1459. option.
  1460. +
  1461. This option may be combined with HSLayer3Nodes to create
  1462. paths of the form:
  1463. +
  1464. C - G - L2 - L3 - Rend +
  1465. C - G - L2 - L3 - M - HSDir +
  1466. C - G - L2 - L3 - M - Intro +
  1467. S - G - L2 - L3 - M - Rend +
  1468. S - G - L2 - L3 - HSDir +
  1469. S - G - L2 - L3 - Intro +
  1470. +
  1471. ExcludeNodes have higher priority than HSLayer2Nodes,
  1472. which means that nodes specified in ExcludeNodes will not be
  1473. picked.
  1474. +
  1475. When either this option or HSLayer3Nodes are set, the /16 subnet
  1476. and node family restrictions are removed for hidden service
  1477. circuits. Additionally, we allow the guard node to be present
  1478. as the Rend, HSDir, and IP node, and as the hop before it. This
  1479. is done to prevent the adversary from inferring information
  1480. about our guard, layer2, and layer3 node choices at later points
  1481. in the path.
  1482. +
  1483. This option is meant to be managed by a Tor controller such as
  1484. https://github.com/mikeperry-tor/vanguards that selects and
  1485. updates this set of nodes for you. Hence it does not do load
  1486. balancing if fewer than 20 nodes are selected, and if no nodes in
  1487. HSLayer2Nodes are currently available for use, Tor will not work.
  1488. Please use extreme care if you are setting this option manually.
  1489. [[HSLayer3Nodes]] **HSLayer3Nodes** __node__,__node__,__...__::
  1490. A list of identity fingerprints, nicknames, country codes, and
  1491. address patterns of nodes that are allowed to be used as the
  1492. third hop in all client and service-side Onion Service circuits.
  1493. This option mitigates attacks where the adversary runs middle nodes
  1494. and induces your client or service to create many circuits, in order
  1495. to discover your primary or Layer2 guard nodes.
  1496. (Default: Any node in the network may be used in the third hop.)
  1497. +
  1498. (Example:
  1499. HSLayer3Nodes ABCD1234CDEF5678ABCD1234CDEF5678ABCD1234, \{cc}, 255.254.0.0/8) +
  1500. +
  1501. When this is set by itself, the resulting hidden service paths
  1502. will look like: +
  1503. C - G - M - L3 - Rend +
  1504. C - G - M - L3 - M - HSDir +
  1505. C - G - M - L3 - M - Intro +
  1506. S - G - M - L3 - M - Rend +
  1507. S - G - M - L3 - HSDir +
  1508. S - G - M - L3 - Intro +
  1509. where C is this client, S is the service, G is the Guard node,
  1510. L2 is a node from this option, and M is a random middle node.
  1511. Rend, HSDir, and Intro point selection is not affected by this
  1512. option.
  1513. +
  1514. While it is possible to use this option by itself, it should be
  1515. combined with HSLayer2Nodes to create paths of the form:
  1516. +
  1517. C - G - L2 - L3 - Rend +
  1518. C - G - L2 - L3 - M - HSDir +
  1519. C - G - L2 - L3 - M - Intro +
  1520. S - G - L2 - L3 - M - Rend +
  1521. S - G - L2 - L3 - HSDir +
  1522. S - G - L2 - L3 - Intro +
  1523. +
  1524. ExcludeNodes have higher priority than HSLayer3Nodes,
  1525. which means that nodes specified in ExcludeNodes will not be
  1526. picked.
  1527. +
  1528. When either this option or HSLayer2Nodes are set, the /16 subnet
  1529. and node family restrictions are removed for hidden service
  1530. circuits. Additionally, we allow the guard node to be present
  1531. as the Rend, HSDir, and IP node, and as the hop before it. This
  1532. is done to prevent the adversary from inferring information
  1533. about our guard, layer2, and layer3 node choices at later points
  1534. in the path.
  1535. +
  1536. This option is meant to be managed by a Tor controller such as
  1537. https://github.com/mikeperry-tor/vanguards that selects and
  1538. updates this set of nodes for you. Hence it does not do load
  1539. balancing if fewer than 20 nodes are selected, and if no nodes in
  1540. HSLayer3Nodes are currently available for use, Tor will not work.
  1541. Please use extreme care if you are setting this option manually.
  1542. [[UseMicrodescriptors]] **UseMicrodescriptors** **0**|**1**|**auto**::
  1543. Microdescriptors are a smaller version of the information that Tor needs
  1544. in order to build its circuits. Using microdescriptors makes Tor clients
  1545. download less directory information, thus saving bandwidth. Directory
  1546. caches need to fetch regular descriptors and microdescriptors, so this
  1547. option doesn't save any bandwidth for them. For legacy reasons, auto is
  1548. accepted, but it has the same effect as 1. (Default: auto)
  1549. [[PathBiasCircThreshold]] **PathBiasCircThreshold** __NUM__ +
  1550. [[PathBiasNoticeRate]] **PathBiasNoticeRate** __NUM__ +
  1551. [[PathBiasWarnRate]] **PathBiasWarnRate** __NUM__ +
  1552. [[PathBiasExtremeRate]] **PathBiasExtremeRate** __NUM__ +
  1553. [[PathBiasDropGuards]] **PathBiasDropGuards** __NUM__ +
  1554. [[PathBiasScaleThreshold]] **PathBiasScaleThreshold** __NUM__::
  1555. These options override the default behavior of Tor's (**currently
  1556. experimental**) path bias detection algorithm. To try to find broken or
  1557. misbehaving guard nodes, Tor looks for nodes where more than a certain
  1558. fraction of circuits through that guard fail to get built. +
  1559. +
  1560. The PathBiasCircThreshold option controls how many circuits we need to build
  1561. through a guard before we make these checks. The PathBiasNoticeRate,
  1562. PathBiasWarnRate and PathBiasExtremeRate options control what fraction of
  1563. circuits must succeed through a guard so we won't write log messages.
  1564. If less than PathBiasExtremeRate circuits succeed *and* PathBiasDropGuards
  1565. is set to 1, we disable use of that guard. +
  1566. +
  1567. When we have seen more than PathBiasScaleThreshold
  1568. circuits through a guard, we scale our observations by 0.5 (governed by
  1569. the consensus) so that new observations don't get swamped by old ones. +
  1570. +
  1571. By default, or if a negative value is provided for one of these options,
  1572. Tor uses reasonable defaults from the networkstatus consensus document.
  1573. If no defaults are available there, these options default to 150, .70,
  1574. .50, .30, 0, and 300 respectively.
  1575. [[PathBiasUseThreshold]] **PathBiasUseThreshold** __NUM__ +
  1576. [[PathBiasNoticeUseRate]] **PathBiasNoticeUseRate** __NUM__ +
  1577. [[PathBiasExtremeUseRate]] **PathBiasExtremeUseRate** __NUM__ +
  1578. [[PathBiasScaleUseThreshold]] **PathBiasScaleUseThreshold** __NUM__::
  1579. Similar to the above options, these options override the default behavior
  1580. of Tor's (**currently experimental**) path use bias detection algorithm. +
  1581. +
  1582. Where as the path bias parameters govern thresholds for successfully
  1583. building circuits, these four path use bias parameters govern thresholds
  1584. only for circuit usage. Circuits which receive no stream usage
  1585. are not counted by this detection algorithm. A used circuit is considered
  1586. successful if it is capable of carrying streams or otherwise receiving
  1587. well-formed responses to RELAY cells. +
  1588. +
  1589. By default, or if a negative value is provided for one of these options,
  1590. Tor uses reasonable defaults from the networkstatus consensus document.
  1591. If no defaults are available there, these options default to 20, .80,
  1592. .60, and 100, respectively.
  1593. [[ClientUseIPv4]] **ClientUseIPv4** **0**|**1**::
  1594. If this option is set to 0, Tor will avoid connecting to directory servers
  1595. and entry nodes over IPv4. Note that clients with an IPv4
  1596. address in a **Bridge**, proxy, or pluggable transport line will try
  1597. connecting over IPv4 even if **ClientUseIPv4** is set to 0. (Default: 1)
  1598. [[ClientUseIPv6]] **ClientUseIPv6** **0**|**1**::
  1599. If this option is set to 1, Tor might connect to directory servers or
  1600. entry nodes over IPv6. For IPv6 only hosts, you need to also set
  1601. **ClientUseIPv4** to 0 to disable IPv4. Note that clients configured with
  1602. an IPv6 address in a **Bridge**, proxy, or pluggable transportline will
  1603. try connecting over IPv6 even if **ClientUseIPv6** is set to 0. (Default: 0)
  1604. [[ClientPreferIPv6DirPort]] **ClientPreferIPv6DirPort** **0**|**1**|**auto**::
  1605. If this option is set to 1, Tor prefers a directory port with an IPv6
  1606. address over one with IPv4, for direct connections, if a given directory
  1607. server has both. (Tor also prefers an IPv6 DirPort if IPv4Client is set to
  1608. 0.) If this option is set to auto, clients prefer IPv4. Other things may
  1609. influence the choice. This option breaks a tie to the favor of IPv6.
  1610. (Default: auto) (DEPRECATED: This option has had no effect for some
  1611. time.)
  1612. [[ClientPreferIPv6ORPort]] **ClientPreferIPv6ORPort** **0**|**1**|**auto**::
  1613. If this option is set to 1, Tor prefers an OR port with an IPv6
  1614. address over one with IPv4 if a given entry node has both. (Tor also
  1615. prefers an IPv6 ORPort if IPv4Client is set to 0.) If this option is set
  1616. to auto, Tor bridge clients prefer the configured bridge address, and
  1617. other clients prefer IPv4. Other things may influence the choice. This
  1618. option breaks a tie to the favor of IPv6. (Default: auto)
  1619. [[ClientAutoIPv6ORPort]] **ClientAutoIPv6ORPort** **0**|**1**::
  1620. If this option is set to 1, Tor clients randomly prefer a node's IPv4 or
  1621. IPv6 ORPort. The random preference is set every time a node is loaded
  1622. from a new consensus or bridge config. When this option is set to 1,
  1623. **ClientPreferIPv6ORPort** is ignored. (Default: 0)
  1624. [[PathsNeededToBuildCircuits]] **PathsNeededToBuildCircuits** __NUM__::
  1625. Tor clients don't build circuits for user traffic until they know
  1626. about enough of the network so that they could potentially construct
  1627. enough of the possible paths through the network. If this option
  1628. is set to a fraction between 0.25 and 0.95, Tor won't build circuits
  1629. until it has enough descriptors or microdescriptors to construct
  1630. that fraction of possible paths. Note that setting this option too low
  1631. can make your Tor client less anonymous, and setting it too high can
  1632. prevent your Tor client from bootstrapping. If this option is negative,
  1633. Tor will use a default value chosen by the directory authorities. If the
  1634. directory authorities do not choose a value, Tor will default to 0.6.
  1635. (Default: -1)
  1636. [[ClientBootstrapConsensusAuthorityDownloadInitialDelay]] **ClientBootstrapConsensusAuthorityDownloadInitialDelay** __N__::
  1637. Initial delay in seconds for when clients should download consensuses from authorities
  1638. if they are bootstrapping (that is, they don't have a usable, reasonably
  1639. live consensus). Only used by clients fetching from a list of fallback
  1640. directory mirrors. This schedule is advanced by (potentially concurrent)
  1641. connection attempts, unlike other schedules, which are advanced by
  1642. connection failures. (Default: 6)
  1643. [[ClientBootstrapConsensusFallbackDownloadInitialDelay]] **ClientBootstrapConsensusFallbackDownloadInitialDelay** __N__::
  1644. Initial delay in seconds for when clients should download consensuses from fallback
  1645. directory mirrors if they are bootstrapping (that is, they don't have a
  1646. usable, reasonably live consensus). Only used by clients fetching from a
  1647. list of fallback directory mirrors. This schedule is advanced by
  1648. (potentially concurrent) connection attempts, unlike other schedules,
  1649. which are advanced by connection failures. (Default: 0)
  1650. [[ClientBootstrapConsensusAuthorityOnlyDownloadInitialDelay]] **ClientBootstrapConsensusAuthorityOnlyDownloadInitialDelay** __N__::
  1651. Initial delay in seconds for when clients should download consensuses from authorities
  1652. if they are bootstrapping (that is, they don't have a usable, reasonably
  1653. live consensus). Only used by clients which don't have or won't fetch
  1654. from a list of fallback directory mirrors. This schedule is advanced by
  1655. (potentially concurrent) connection attempts, unlike other schedules,
  1656. which are advanced by connection failures. (Default: 0)
  1657. [[ClientBootstrapConsensusMaxInProgressTries]] **ClientBootstrapConsensusMaxInProgressTries** __NUM__::
  1658. Try this many simultaneous connections to download a consensus before
  1659. waiting for one to complete, timeout, or error out. (Default: 3)
  1660. [[DormantClientTimeout]] **DormantClientTimeout** __N__ **minutes**|**hours**|**days**|**weeks**::
  1661. If Tor spends this much time without any client activity,
  1662. enter a dormant state where automatic circuits are not built, and
  1663. directory information is not fetched.
  1664. Does not affect servers or onion services. Must be at least 10 minutes.
  1665. (Default: 24 hours)
  1666. [[DormantTimeoutDisabledByIdleStreams]] **DormantTimeoutDisabledByIdleStreams** **0**|**1**::
  1667. If true, then any open client stream (even one not reading or writing)
  1668. counts as client activity for the purpose of DormantClientTimeout.
  1669. If false, then only network activity counts. (Default: 1)
  1670. [[DormantOnFirstStartup]] **DormantOnFirstStartup** **0**|**1**::
  1671. If true, then the first time Tor starts up with a fresh DataDirectory,
  1672. it starts in dormant mode, and takes no actions until the user has made
  1673. a request. (This mode is recommended if installing a Tor client for a
  1674. user who might not actually use it.) If false, Tor bootstraps the first
  1675. time it is started, whether it sees a user request or not.
  1676. +
  1677. After the first time Tor starts, it begins in dormant mode if it was
  1678. dormant before, and not otherwise. (Default: 0)
  1679. [[DormantCanceledByStartup]] **DormantCanceledByStartup** **0**|**1**::
  1680. By default, Tor starts in active mode if it was active the last time
  1681. it was shut down, and in dormant mode if it was dormant. But if
  1682. this option is true, Tor treats every startup event as user
  1683. activity, and Tor will never start in Dormant mode, even if it has
  1684. been unused for a long time on previous runs. (Default: 0)
  1685. +
  1686. Note: Packagers and application developers should change the value of
  1687. this option only with great caution: it has the potential to
  1688. create spurious traffic on the network. This option should only
  1689. be used if Tor is started by an affirmative user activity (like
  1690. clicking on an applcation or running a command), and not if Tor
  1691. is launched for some other reason (for example, by a startup
  1692. process, or by an application that launches itself on every login.)
  1693. SERVER OPTIONS
  1694. --------------
  1695. The following options are useful only for servers (that is, if ORPort
  1696. is non-zero):
  1697. [[Address]] **Address** __address__::
  1698. The IPv4 address of this server, or a fully qualified domain name of
  1699. this server that resolves to an IPv4 address. You can leave this
  1700. unset, and Tor will try to guess your IPv4 address. This IPv4
  1701. address is the one used to tell clients and other servers where to
  1702. find your Tor server; it doesn't affect the address that your server
  1703. binds to. To bind to a different address, use the ORPort and
  1704. OutboundBindAddress options.
  1705. [[AssumeReachable]] **AssumeReachable** **0**|**1**::
  1706. This option is used when bootstrapping a new Tor network. If set to 1,
  1707. don't do self-reachability testing; just upload your server descriptor
  1708. immediately. If **AuthoritativeDirectory** is also set, this option
  1709. instructs the dirserver to bypass remote reachability testing too and list
  1710. all connected servers as running.
  1711. [[BridgeRelay]] **BridgeRelay** **0**|**1**::
  1712. Sets the relay to act as a "bridge" with respect to relaying connections
  1713. from bridge users to the Tor network. It mainly causes Tor to publish a
  1714. server descriptor to the bridge database, rather than
  1715. to the public directory authorities. +
  1716. +
  1717. Note: make sure that no MyFamily lines are present in your torrc when
  1718. relay is configured in bridge mode.
  1719. [[BridgeDistribution]] **BridgeDistribution** __string__::
  1720. If set along with BridgeRelay, Tor will include a new line in its
  1721. bridge descriptor which indicates to the BridgeDB service how it
  1722. would like its bridge address to be given out. Set it to "none" if
  1723. you want BridgeDB to avoid distributing your bridge address, or "any" to
  1724. let BridgeDB decide. (Default: any)
  1725. +
  1726. Note: as of Oct 2017, the BridgeDB part of this option is not yet
  1727. implemented. Until BridgeDB is updated to obey this option, your
  1728. bridge will make this request, but it will not (yet) be obeyed.
  1729. [[ContactInfo]] **ContactInfo** __email_address__::
  1730. Administrative contact information for this relay or bridge. This line
  1731. can be used to contact you if your relay or bridge is misconfigured or
  1732. something else goes wrong. Note that we archive and publish all
  1733. descriptors containing these lines and that Google indexes them, so
  1734. spammers might also collect them. You may want to obscure the fact
  1735. that it's an email address and/or generate a new address for this
  1736. purpose. +
  1737. +
  1738. ContactInfo **must** be set to a working address if you run more than one
  1739. relay or bridge. (Really, everybody running a relay or bridge should set
  1740. it.)
  1741. [[ExitRelay]] **ExitRelay** **0**|**1**|**auto**::
  1742. Tells Tor whether to run as an exit relay. If Tor is running as a
  1743. non-bridge server, and ExitRelay is set to 1, then Tor allows traffic to
  1744. exit according to the ExitPolicy option, the ReducedExitPolicy option,
  1745. or the default ExitPolicy (if no other exit policy option is specified). +
  1746. +
  1747. If ExitRelay is set to 0, no traffic is allowed to exit, and the
  1748. ExitPolicy, ReducedExitPolicy, and IPv6Exit options are ignored. +
  1749. +
  1750. If ExitRelay is set to "auto", then Tor checks the ExitPolicy,
  1751. ReducedExitPolicy, and IPv6Exit options. If at least one of these options
  1752. is set, Tor behaves as if ExitRelay were set to 1. If none of these exit
  1753. policy options are set, Tor behaves as if ExitRelay were set to 0.
  1754. (Default: auto)
  1755. [[ExitPolicy]] **ExitPolicy** __policy__,__policy__,__...__::
  1756. Set an exit policy for this server. Each policy is of the form
  1757. "**accept[6]**|**reject[6]** __ADDR__[/__MASK__][:__PORT__]". If /__MASK__ is
  1758. omitted then this policy just applies to the host given. Instead of giving
  1759. a host or network you can also use "\*" to denote the universe (0.0.0.0/0
  1760. and ::/0), or \*4 to denote all IPv4 addresses, and \*6 to denote all IPv6
  1761. addresses.
  1762. __PORT__ can be a single port number, an interval of ports
  1763. "__FROM_PORT__-__TO_PORT__", or "\*". If __PORT__ is omitted, that means
  1764. "\*". +
  1765. +
  1766. For example, "accept 18.7.22.69:\*,reject 18.0.0.0/8:\*,accept \*:\*" would
  1767. reject any IPv4 traffic destined for MIT except for web.mit.edu, and accept
  1768. any other IPv4 or IPv6 traffic. +
  1769. +
  1770. Tor also allows IPv6 exit policy entries. For instance, "reject6 [FC00::]/7:\*"
  1771. rejects all destinations that share 7 most significant bit prefix with
  1772. address FC00::. Respectively, "accept6 [C000::]/3:\*" accepts all destinations
  1773. that share 3 most significant bit prefix with address C000::. +
  1774. +
  1775. accept6 and reject6 only produce IPv6 exit policy entries. Using an IPv4
  1776. address with accept6 or reject6 is ignored and generates a warning.
  1777. accept/reject allows either IPv4 or IPv6 addresses. Use \*4 as an IPv4
  1778. wildcard address, and \*6 as an IPv6 wildcard address. accept/reject *
  1779. expands to matching IPv4 and IPv6 wildcard address rules. +
  1780. +
  1781. To specify all IPv4 and IPv6 internal and link-local networks (including
  1782. 0.0.0.0/8, 169.254.0.0/16, 127.0.0.0/8, 192.168.0.0/16, 10.0.0.0/8,
  1783. 172.16.0.0/12, [::]/8, [FC00::]/7, [FE80::]/10, [FEC0::]/10, [FF00::]/8,
  1784. and [::]/127), you can use the "private" alias instead of an address.
  1785. ("private" always produces rules for IPv4 and IPv6 addresses, even when
  1786. used with accept6/reject6.) +
  1787. +
  1788. Private addresses are rejected by default (at the beginning of your exit
  1789. policy), along with any configured primary public IPv4 and IPv6 addresses.
  1790. These private addresses are rejected unless you set the
  1791. ExitPolicyRejectPrivate config option to 0. For example, once you've done
  1792. that, you could allow HTTP to 127.0.0.1 and block all other connections to
  1793. internal networks with "accept 127.0.0.1:80,reject private:\*", though that
  1794. may also allow connections to your own computer that are addressed to its
  1795. public (external) IP address. See RFC 1918 and RFC 3330 for more details
  1796. about internal and reserved IP address space. See
  1797. ExitPolicyRejectLocalInterfaces if you want to block every address on the
  1798. relay, even those that aren't advertised in the descriptor. +
  1799. +
  1800. This directive can be specified multiple times so you don't have to put it
  1801. all on one line. +
  1802. +
  1803. Policies are considered first to last, and the first match wins. If you
  1804. want to allow the same ports on IPv4 and IPv6, write your rules using
  1805. accept/reject \*. If you want to allow different ports on IPv4 and IPv6,
  1806. write your IPv6 rules using accept6/reject6 \*6, and your IPv4 rules using
  1807. accept/reject \*4. If you want to \_replace_ the default exit policy, end
  1808. your exit policy with either a reject \*:* or an accept \*:*. Otherwise,
  1809. you're \_augmenting_ (prepending to) the default exit policy. +
  1810. +
  1811. If you want to use a reduced exit policy rather than the default exit
  1812. policy, set "ReducedExitPolicy 1". If you want to _replace_ the default
  1813. exit policy with your custom exit policy, end your exit policy with either
  1814. a reject *:* or an accept *:*. Otherwise, you're _augmenting_ (prepending
  1815. to) the default or reduced exit policy. +
  1816. +
  1817. The default exit policy is:
  1818. reject *:25
  1819. reject *:119
  1820. reject *:135-139
  1821. reject *:445
  1822. reject *:563
  1823. reject *:1214
  1824. reject *:4661-4666
  1825. reject *:6346-6429
  1826. reject *:6699
  1827. reject *:6881-6999
  1828. accept *:*
  1829. // Anchor only for formatting, not visible in the man page.
  1830. [[ExitPolicyDefault]]::
  1831. Since the default exit policy uses accept/reject *, it applies to both
  1832. IPv4 and IPv6 addresses.
  1833. [[ExitPolicyRejectPrivate]] **ExitPolicyRejectPrivate** **0**|**1**::
  1834. Reject all private (local) networks, along with the relay's advertised
  1835. public IPv4 and IPv6 addresses, at the beginning of your exit policy.
  1836. See above entry on ExitPolicy.
  1837. (Default: 1)
  1838. [[ExitPolicyRejectLocalInterfaces]] **ExitPolicyRejectLocalInterfaces** **0**|**1**::
  1839. Reject all IPv4 and IPv6 addresses that the relay knows about, at the
  1840. beginning of your exit policy. This includes any OutboundBindAddress, the
  1841. bind addresses of any port options, such as ControlPort or DNSPort, and any
  1842. public IPv4 and IPv6 addresses on any interface on the relay. (If IPv6Exit
  1843. is not set, all IPv6 addresses will be rejected anyway.)
  1844. See above entry on ExitPolicy.
  1845. This option is off by default, because it lists all public relay IP
  1846. addresses in the ExitPolicy, even those relay operators might prefer not
  1847. to disclose.
  1848. (Default: 0)
  1849. [[ReducedExitPolicy]] **ReducedExitPolicy** **0**|**1**::
  1850. If set, use a reduced exit policy rather than the default one. +
  1851. +
  1852. The reduced exit policy is an alternative to the default exit policy. It
  1853. allows as many Internet services as possible while still blocking the
  1854. majority of TCP ports. Currently, the policy allows approximately 65 ports.
  1855. This reduces the odds that your node will be used for peer-to-peer
  1856. applications. +
  1857. +
  1858. The reduced exit policy is:
  1859. accept *:20-21
  1860. accept *:22
  1861. accept *:23
  1862. accept *:43
  1863. accept *:53
  1864. accept *:79
  1865. accept *:80-81
  1866. accept *:88
  1867. accept *:110
  1868. accept *:143
  1869. accept *:194
  1870. accept *:220
  1871. accept *:389
  1872. accept *:443
  1873. accept *:464
  1874. accept *:465
  1875. accept *:531
  1876. accept *:543-544
  1877. accept *:554
  1878. accept *:563
  1879. accept *:587
  1880. accept *:636
  1881. accept *:706
  1882. accept *:749
  1883. accept *:873
  1884. accept *:902-904
  1885. accept *:981
  1886. accept *:989-990
  1887. accept *:991
  1888. accept *:992
  1889. accept *:993
  1890. accept *:994
  1891. accept *:995
  1892. accept *:1194
  1893. accept *:1220
  1894. accept *:1293
  1895. accept *:1500
  1896. accept *:1533
  1897. accept *:1677
  1898. accept *:1723
  1899. accept *:1755
  1900. accept *:1863
  1901. accept *:2082
  1902. accept *:2083
  1903. accept *:2086-2087
  1904. accept *:2095-2096
  1905. accept *:2102-2104
  1906. accept *:3128
  1907. accept *:3389
  1908. accept *:3690
  1909. accept *:4321
  1910. accept *:4643
  1911. accept *:5050
  1912. accept *:5190
  1913. accept *:5222-5223
  1914. accept *:5228
  1915. accept *:5900
  1916. accept *:6660-6669
  1917. accept *:6679
  1918. accept *:6697
  1919. accept *:8000
  1920. accept *:8008
  1921. accept *:8074
  1922. accept *:8080
  1923. accept *:8082
  1924. accept *:8087-8088
  1925. accept *:8232-8233
  1926. accept *:8332-8333
  1927. accept *:8443
  1928. accept *:8888
  1929. accept *:9418
  1930. accept *:9999
  1931. accept *:10000
  1932. accept *:11371
  1933. accept *:19294
  1934. accept *:19638
  1935. accept *:50002
  1936. accept *:64738
  1937. reject *:*
  1938. (Default: 0)
  1939. [[IPv6Exit]] **IPv6Exit** **0**|**1**::
  1940. If set, and we are an exit node, allow clients to use us for IPv6 traffic.
  1941. When this option is set and ExitRelay is auto, we act as if ExitRelay
  1942. is 1. (Default: 0)
  1943. [[MaxOnionQueueDelay]] **MaxOnionQueueDelay** __NUM__ [**msec**|**second**]::
  1944. If we have more onionskins queued for processing than we can process in
  1945. this amount of time, reject new ones. (Default: 1750 msec)
  1946. [[MyFamily]] **MyFamily** __fingerprint__,__fingerprint__,...::
  1947. Declare that this Tor relay is controlled or administered by a group or
  1948. organization identical or similar to that of the other relays, defined by
  1949. their (possibly $-prefixed) identity fingerprints.
  1950. This option can be repeated many times, for
  1951. convenience in defining large families: all fingerprints in all MyFamily
  1952. lines are merged into one list.
  1953. When two relays both declare that they are in the
  1954. same \'family', Tor clients will not use them in the same circuit. (Each
  1955. relay only needs to list the other servers in its family; it doesn't need to
  1956. list itself, but it won't hurt if it does.) Do not list any bridge relay as it would
  1957. compromise its concealment. +
  1958. +
  1959. When listing a node, it's better to list it by fingerprint than by
  1960. nickname: fingerprints are more reliable. +
  1961. +
  1962. If you run more than one relay, the MyFamily option on each relay
  1963. **must** list all other relays, as described above. +
  1964. +
  1965. Note: do not use MyFamily when configuring your Tor instance as a
  1966. brigde.
  1967. [[Nickname]] **Nickname** __name__::
  1968. Set the server's nickname to \'name'. Nicknames must be between 1 and 19
  1969. characters inclusive, and must contain only the characters [a-zA-Z0-9].
  1970. If not set, **Unnamed** will be used. Relays can always be uniquely identified
  1971. by their identity fingerprints.
  1972. [[NumCPUs]] **NumCPUs** __num__::
  1973. How many processes to use at once for decrypting onionskins and other
  1974. parallelizable operations. If this is set to 0, Tor will try to detect
  1975. how many CPUs you have, defaulting to 1 if it can't tell. (Default: 0)
  1976. [[ORPort]] **ORPort** \['address':]__PORT__|**auto** [_flags_]::
  1977. Advertise this port to listen for connections from Tor clients and
  1978. servers. This option is required to be a Tor server.
  1979. Set it to "auto" to have Tor pick a port for you. Set it to 0 to not
  1980. run an ORPort at all. This option can occur more than once. (Default: 0) +
  1981. +
  1982. Tor recognizes these flags on each ORPort:
  1983. **NoAdvertise**;;
  1984. By default, we bind to a port and tell our users about it. If
  1985. NoAdvertise is specified, we don't advertise, but listen anyway. This
  1986. can be useful if the port everybody will be connecting to (for
  1987. example, one that's opened on our firewall) is somewhere else.
  1988. **NoListen**;;
  1989. By default, we bind to a port and tell our users about it. If
  1990. NoListen is specified, we don't bind, but advertise anyway. This
  1991. can be useful if something else (for example, a firewall's port
  1992. forwarding configuration) is causing connections to reach us.
  1993. **IPv4Only**;;
  1994. If the address is absent, or resolves to both an IPv4 and an IPv6
  1995. address, only listen to the IPv4 address.
  1996. **IPv6Only**;;
  1997. If the address is absent, or resolves to both an IPv4 and an IPv6
  1998. address, only listen to the IPv6 address.
  1999. // Anchor only for formatting, not visible in the man page.
  2000. [[ORPortFlagsExclusive]]::
  2001. For obvious reasons, NoAdvertise and NoListen are mutually exclusive, and
  2002. IPv4Only and IPv6Only are mutually exclusive.
  2003. [[PublishServerDescriptor]] **PublishServerDescriptor** **0**|**1**|**v3**|**bridge**,**...**::
  2004. This option specifies which descriptors Tor will publish when acting as
  2005. a relay. You can
  2006. choose multiple arguments, separated by commas. +
  2007. +
  2008. If this option is set to 0, Tor will not publish its
  2009. descriptors to any directories. (This is useful if you're testing
  2010. out your server, or if you're using a Tor controller that handles
  2011. directory publishing for you.) Otherwise, Tor will publish its
  2012. descriptors of all type(s) specified. The default is "1", which
  2013. means "if running as a relay or bridge, publish descriptors to the
  2014. appropriate authorities". Other possibilities are "v3", meaning
  2015. "publish as if you're a relay", and "bridge", meaning "publish as
  2016. if you're a bridge".
  2017. [[ShutdownWaitLength]] **ShutdownWaitLength** __NUM__::
  2018. When we get a SIGINT and we're a server, we begin shutting down:
  2019. we close listeners and start refusing new circuits. After **NUM**
  2020. seconds, we exit. If we get a second SIGINT, we exit immediately.
  2021. (Default: 30 seconds)
  2022. [[SSLKeyLifetime]] **SSLKeyLifetime** __N__ **minutes**|**hours**|**days**|**weeks**::
  2023. When creating a link certificate for our outermost SSL handshake,
  2024. set its lifetime to this amount of time. If set to 0, Tor will choose
  2025. some reasonable random defaults. (Default: 0)
  2026. [[HeartbeatPeriod]] **HeartbeatPeriod** __N__ **minutes**|**hours**|**days**|**weeks**::
  2027. Log a heartbeat message every **HeartbeatPeriod** seconds. This is
  2028. a log level __notice__ message, designed to let you know your Tor
  2029. server is still alive and doing useful things. Settings this
  2030. to 0 will disable the heartbeat. Otherwise, it must be at least 30
  2031. minutes. (Default: 6 hours)
  2032. [[MainloopStats]] **MainloopStats** **0**|**1**::
  2033. Log main loop statistics every **HeartbeatPeriod** seconds. This is a log
  2034. level __notice__ message designed to help developers instrumenting Tor's
  2035. main event loop. (Default: 0)
  2036. [[AccountingMax]] **AccountingMax** __N__ **bytes**|**KBytes**|**MBytes**|**GBytes**|**TBytes**|**KBits**|**MBits**|**GBits**|**TBits**::
  2037. Limits the max number of bytes sent and received within a set time period
  2038. using a given calculation rule (see: AccountingStart, AccountingRule).
  2039. Useful if you need to stay under a specific bandwidth. By default, the
  2040. number used for calculation is the max of either the bytes sent or
  2041. received. For example, with AccountingMax set to 1 GByte, a server
  2042. could send 900 MBytes and receive 800 MBytes and continue running.
  2043. It will only hibernate once one of the two reaches 1 GByte. This can
  2044. be changed to use the sum of the both bytes received and sent by setting
  2045. the AccountingRule option to "sum" (total bandwidth in/out). When the
  2046. number of bytes remaining gets low, Tor will stop accepting new connections
  2047. and circuits. When the number of bytes is exhausted, Tor will hibernate
  2048. until some time in the next accounting period. To prevent all servers
  2049. from waking at the same time, Tor will also wait until a random point
  2050. in each period before waking up. If you have bandwidth cost issues,
  2051. enabling hibernation is preferable to setting a low bandwidth, since
  2052. it provides users with a collection of fast servers that are up some
  2053. of the time, which is more useful than a set of slow servers that are
  2054. always "available".
  2055. [[AccountingRule]] **AccountingRule** **sum**|**max**|**in**|**out**::
  2056. How we determine when our AccountingMax has been reached (when we
  2057. should hibernate) during a time interval. Set to "max" to calculate
  2058. using the higher of either the sent or received bytes (this is the
  2059. default functionality). Set to "sum" to calculate using the sent
  2060. plus received bytes. Set to "in" to calculate using only the
  2061. received bytes. Set to "out" to calculate using only the sent bytes.
  2062. (Default: max)
  2063. [[AccountingStart]] **AccountingStart** **day**|**week**|**month** [__day__] __HH:MM__::
  2064. Specify how long accounting periods last. If **month** is given,
  2065. each accounting period runs from the time __HH:MM__ on the __dayth__ day of one
  2066. month to the same day and time of the next. The relay will go at full speed,
  2067. use all the quota you specify, then hibernate for the rest of the period. (The
  2068. day must be between 1 and 28.) If **week** is given, each accounting period
  2069. runs from the time __HH:MM__ of the __dayth__ day of one week to the same day
  2070. and time of the next week, with Monday as day 1 and Sunday as day 7. If **day**
  2071. is given, each accounting period runs from the time __HH:MM__ each day to the
  2072. same time on the next day. All times are local, and given in 24-hour time.
  2073. (Default: "month 1 0:00")
  2074. [[RefuseUnknownExits]] **RefuseUnknownExits** **0**|**1**|**auto**::
  2075. Prevent nodes that don't appear in the consensus from exiting using this
  2076. relay. If the option is 1, we always block exit attempts from such
  2077. nodes; if it's 0, we never do, and if the option is "auto", then we do
  2078. whatever the authorities suggest in the consensus (and block if the consensus
  2079. is quiet on the issue). (Default: auto)
  2080. [[ServerDNSResolvConfFile]] **ServerDNSResolvConfFile** __filename__::
  2081. Overrides the default DNS configuration with the configuration in
  2082. __filename__. The file format is the same as the standard Unix
  2083. "**resolv.conf**" file (7). This option, like all other ServerDNS options,
  2084. only affects name lookups that your server does on behalf of clients.
  2085. (Defaults to use the system DNS configuration or a localhost DNS service
  2086. in case no nameservers are found in a given configuration.)
  2087. [[ServerDNSAllowBrokenConfig]] **ServerDNSAllowBrokenConfig** **0**|**1**::
  2088. If this option is false, Tor exits immediately if there are problems
  2089. parsing the system DNS configuration or connecting to nameservers.
  2090. Otherwise, Tor continues to periodically retry the system nameservers until
  2091. it eventually succeeds. (Default: 1)
  2092. [[ServerDNSSearchDomains]] **ServerDNSSearchDomains** **0**|**1**::
  2093. If set to 1, then we will search for addresses in the local search domain.
  2094. For example, if this system is configured to believe it is in
  2095. "example.com", and a client tries to connect to "www", the client will be
  2096. connected to "www.example.com". This option only affects name lookups that
  2097. your server does on behalf of clients. (Default: 0)
  2098. [[ServerDNSDetectHijacking]] **ServerDNSDetectHijacking** **0**|**1**::
  2099. When this option is set to 1, we will test periodically to determine
  2100. whether our local nameservers have been configured to hijack failing DNS
  2101. requests (usually to an advertising site). If they are, we will attempt to
  2102. correct this. This option only affects name lookups that your server does
  2103. on behalf of clients. (Default: 1)
  2104. [[ServerDNSTestAddresses]] **ServerDNSTestAddresses** __hostname__,__hostname__,__...__::
  2105. When we're detecting DNS hijacking, make sure that these __valid__ addresses
  2106. aren't getting redirected. If they are, then our DNS is completely useless,
  2107. and we'll reset our exit policy to "reject \*:*". This option only affects
  2108. name lookups that your server does on behalf of clients. (Default:
  2109. "www.google.com, www.mit.edu, www.yahoo.com, www.slashdot.org")
  2110. [[ServerDNSAllowNonRFC953Hostnames]] **ServerDNSAllowNonRFC953Hostnames** **0**|**1**::
  2111. When this option is disabled, Tor does not try to resolve hostnames
  2112. containing illegal characters (like @ and :) rather than sending them to an
  2113. exit node to be resolved. This helps trap accidental attempts to resolve
  2114. URLs and so on. This option only affects name lookups that your server does
  2115. on behalf of clients. (Default: 0)
  2116. [[BridgeRecordUsageByCountry]] **BridgeRecordUsageByCountry** **0**|**1**::
  2117. When this option is enabled and BridgeRelay is also enabled, and we have
  2118. GeoIP data, Tor keeps a per-country count of how many client
  2119. addresses have contacted it so that it can help the bridge authority guess
  2120. which countries have blocked access to it. If ExtraInfoStatistics is
  2121. enabled, it will be published as part of extra-info document. (Default: 1)
  2122. [[ServerDNSRandomizeCase]] **ServerDNSRandomizeCase** **0**|**1**::
  2123. When this option is set, Tor sets the case of each character randomly in
  2124. outgoing DNS requests, and makes sure that the case matches in DNS replies.
  2125. This so-called "0x20 hack" helps resist some types of DNS poisoning attack.
  2126. For more information, see "Increased DNS Forgery Resistance through
  2127. 0x20-Bit Encoding". This option only affects name lookups that your server
  2128. does on behalf of clients. (Default: 1)
  2129. [[GeoIPFile]] **GeoIPFile** __filename__::
  2130. A filename containing IPv4 GeoIP data, for use with by-country statistics.
  2131. [[GeoIPv6File]] **GeoIPv6File** __filename__::
  2132. A filename containing IPv6 GeoIP data, for use with by-country statistics.
  2133. [[CellStatistics]] **CellStatistics** **0**|**1**::
  2134. Relays only.
  2135. When this option is enabled, Tor collects statistics about cell
  2136. processing (i.e. mean time a cell is spending in a queue, mean
  2137. number of cells in a queue and mean number of processed cells per
  2138. circuit) and writes them into disk every 24 hours. Onion router
  2139. operators may use the statistics for performance monitoring.
  2140. If ExtraInfoStatistics is enabled, it will published as part of
  2141. extra-info document. (Default: 0)
  2142. [[PaddingStatistics]] **PaddingStatistics** **0**|**1**::
  2143. Relays and bridges only.
  2144. When this option is enabled, Tor collects statistics for padding cells
  2145. sent and received by this relay, in addition to total cell counts.
  2146. These statistics are rounded, and omitted if traffic is low. This
  2147. information is important for load balancing decisions related to padding.
  2148. If ExtraInfoStatistics is enabled, it will be published
  2149. as a part of extra-info document. (Default: 1)
  2150. [[DirReqStatistics]] **DirReqStatistics** **0**|**1**::
  2151. Relays and bridges only.
  2152. When this option is enabled, a Tor directory writes statistics on the
  2153. number and response time of network status requests to disk every 24
  2154. hours. Enables relay and bridge operators to monitor how much their
  2155. server is being used by clients to learn about Tor network.
  2156. If ExtraInfoStatistics is enabled, it will published as part of
  2157. extra-info document. (Default: 1)
  2158. [[EntryStatistics]] **EntryStatistics** **0**|**1**::
  2159. Relays only.
  2160. When this option is enabled, Tor writes statistics on the number of
  2161. directly connecting clients to disk every 24 hours. Enables relay
  2162. operators to monitor how much inbound traffic that originates from
  2163. Tor clients passes through their server to go further down the
  2164. Tor network. If ExtraInfoStatistics is enabled, it will be published
  2165. as part of extra-info document. (Default: 0)
  2166. [[ExitPortStatistics]] **ExitPortStatistics** **0**|**1**::
  2167. Exit relays only.
  2168. When this option is enabled, Tor writes statistics on the number of
  2169. relayed bytes and opened stream per exit port to disk every 24 hours.
  2170. Enables exit relay operators to measure and monitor amounts of traffic
  2171. that leaves Tor network through their exit node. If ExtraInfoStatistics
  2172. is enabled, it will be published as part of extra-info document.
  2173. (Default: 0)
  2174. [[ConnDirectionStatistics]] **ConnDirectionStatistics** **0**|**1**::
  2175. Relays only.
  2176. When this option is enabled, Tor writes statistics on the amounts of
  2177. traffic it passes between itself and other relays to disk every 24
  2178. hours. Enables relay operators to monitor how much their relay is
  2179. being used as middle node in the circuit. If ExtraInfoStatistics is
  2180. enabled, it will be published as part of extra-info document.
  2181. (Default: 0)
  2182. [[HiddenServiceStatistics]] **HiddenServiceStatistics** **0**|**1**::
  2183. Relays only.
  2184. When this option is enabled, a Tor relay writes obfuscated
  2185. statistics on its role as hidden-service directory, introduction
  2186. point, or rendezvous point to disk every 24 hours. If
  2187. ExtraInfoStatistics is also enabled, these statistics are further
  2188. published to the directory authorities. (Default: 1)
  2189. [[ExtraInfoStatistics]] **ExtraInfoStatistics** **0**|**1**::
  2190. When this option is enabled, Tor includes previously gathered statistics in
  2191. its extra-info documents that it uploads to the directory authorities.
  2192. Disabling this option also removes bandwidth usage statistics, and
  2193. GeoIPFile and GeoIPv6File hashes from the extra-info file. Bridge
  2194. ServerTransportPlugin lines are always includes in the extra-info file,
  2195. because they are required by BridgeDB.
  2196. (Default: 1)
  2197. [[ExtendAllowPrivateAddresses]] **ExtendAllowPrivateAddresses** **0**|**1**::
  2198. When this option is enabled, Tor will connect to relays on localhost,
  2199. RFC1918 addresses, and so on. In particular, Tor will make direct OR
  2200. connections, and Tor routers allow EXTEND requests, to these private
  2201. addresses. (Tor will always allow connections to bridges, proxies, and
  2202. pluggable transports configured on private addresses.) Enabling this
  2203. option can create security issues; you should probably leave it off.
  2204. (Default: 0)
  2205. [[MaxMemInQueues]] **MaxMemInQueues** __N__ **bytes**|**KB**|**MB**|**GB**::
  2206. This option configures a threshold above which Tor will assume that it
  2207. needs to stop queueing or buffering data because it's about to run out of
  2208. memory. If it hits this threshold, it will begin killing circuits until
  2209. it has recovered at least 10% of this memory. Do not set this option too
  2210. low, or your relay may be unreliable under load. This option only
  2211. affects some queues, so the actual process size will be larger than
  2212. this. If this option is set to 0, Tor will try to pick a reasonable
  2213. default based on your system's physical memory. (Default: 0)
  2214. [[DisableOOSCheck]] **DisableOOSCheck** **0**|**1**::
  2215. This option disables the code that closes connections when Tor notices
  2216. that it is running low on sockets. Right now, it is on by default,
  2217. since the existing out-of-sockets mechanism tends to kill OR connections
  2218. more than it should. (Default: 1)
  2219. [[SigningKeyLifetime]] **SigningKeyLifetime** __N__ **days**|**weeks**|**months**::
  2220. For how long should each Ed25519 signing key be valid? Tor uses a
  2221. permanent master identity key that can be kept offline, and periodically
  2222. generates new "signing" keys that it uses online. This option
  2223. configures their lifetime.
  2224. (Default: 30 days)
  2225. [[OfflineMasterKey]] **OfflineMasterKey** **0**|**1**::
  2226. If non-zero, the Tor relay will never generate or load its master secret
  2227. key. Instead, you'll have to use "tor --keygen" to manage the permanent
  2228. ed25519 master identity key, as well as the corresponding temporary
  2229. signing keys and certificates. (Default: 0)
  2230. [[KeyDirectory]] **KeyDirectory** __DIR__::
  2231. Store secret keys in DIR. Can not be changed while tor is
  2232. running.
  2233. (Default: the "keys" subdirectory of DataDirectory.)
  2234. [[KeyDirectoryGroupReadable]] **KeyDirectoryGroupReadable** **0**|**1**::
  2235. If this option is set to 0, don't allow the filesystem group to read the
  2236. KeywDirectory. If the option is set to 1, make the KeyDirectory readable
  2237. by the default GID. (Default: 0)
  2238. [[RephistTrackTime]] **RephistTrackTime** __N__ **seconds**|**minutes**|**hours**|**days**|**weeks**::
  2239. Tells an authority, or other node tracking node reliability and history,
  2240. that fine-grained information about nodes can be discarded when it hasn't
  2241. changed for a given amount of time. (Default: 24 hours)
  2242. DIRECTORY SERVER OPTIONS
  2243. ------------------------
  2244. The following options are useful only for directory servers. (Relays with
  2245. enough bandwidth automatically become directory servers; see DirCache for
  2246. details.)
  2247. [[DirPortFrontPage]] **DirPortFrontPage** __FILENAME__::
  2248. When this option is set, it takes an HTML file and publishes it as "/" on
  2249. the DirPort. Now relay operators can provide a disclaimer without needing
  2250. to set up a separate webserver. There's a sample disclaimer in
  2251. contrib/operator-tools/tor-exit-notice.html.
  2252. [[DirPort]] **DirPort** \['address':]__PORT__|**auto** [_flags_]::
  2253. If this option is nonzero, advertise the directory service on this port.
  2254. Set it to "auto" to have Tor pick a port for you. This option can occur
  2255. more than once, but only one advertised DirPort is supported: all
  2256. but one DirPort must have the **NoAdvertise** flag set. (Default: 0) +
  2257. +
  2258. The same flags are supported here as are supported by ORPort.
  2259. [[DirPolicy]] **DirPolicy** __policy__,__policy__,__...__::
  2260. Set an entrance policy for this server, to limit who can connect to the
  2261. directory ports. The policies have the same form as exit policies above,
  2262. except that port specifiers are ignored. Any address not matched by
  2263. some entry in the policy is accepted.
  2264. [[DirCache]] **DirCache** **0**|**1**::
  2265. When this option is set, Tor caches all current directory documents except
  2266. extra info documents, and accepts client requests for them. If
  2267. **DownloadExtraInfo** is set, cached extra info documents are also cached.
  2268. Setting **DirPort** is not required for **DirCache**, because clients
  2269. connect via the ORPort by default. Setting either DirPort or BridgeRelay
  2270. and setting DirCache to 0 is not supported. (Default: 1)
  2271. [[MaxConsensusAgeForDiffs]] **MaxConsensusAgeForDiffs** __N__ **minutes**|**hours**|**days**|**weeks**::
  2272. When this option is nonzero, Tor caches will not try to generate
  2273. consensus diffs for any consensus older than this amount of time.
  2274. If this option is set to zero, Tor will pick a reasonable default from
  2275. the current networkstatus document. You should not set this
  2276. option unless your cache is severely low on disk space or CPU.
  2277. If you need to set it, keeping it above 3 or 4 hours will help clients
  2278. much more than setting it to zero.
  2279. (Default: 0)
  2280. DENIAL OF SERVICE MITIGATION OPTIONS
  2281. ------------------------------------
  2282. Tor has three built-in mitigation options that can be individually
  2283. enabled/disabled and fine-tuned, but by default Tor directory authorities will
  2284. define reasonable values for relays and no explicit configuration is required
  2285. to make use of these protections. The mitigations take place at relays,
  2286. and are as follows:
  2287. 1. If a single client address makes too many concurrent connections (this is
  2288. configurable via DoSConnectionMaxConcurrentCount), hang up on further
  2289. connections.
  2290. +
  2291. 2. If a single client IP address (v4 or v6) makes circuits too quickly
  2292. (default values are more than 3 per second, with an allowed burst of 90,
  2293. see DoSCircuitCreationRate and DoSCircuitCreationBurst) while also having
  2294. too many connections open (default is 3, see
  2295. DoSCircuitCreationMinConnections), tor will refuse any new circuit (CREATE
  2296. cells) for the next while (random value between 1 and 2 hours).
  2297. +
  2298. 3. If a client asks to establish a rendezvous point to you directly (ex:
  2299. Tor2Web client), ignore the request.
  2300. These defenses can be manually controlled by torrc options, but relays will
  2301. also take guidance from consensus parameters using these same names, so there's
  2302. no need to configure anything manually. In doubt, do not change those values.
  2303. The values set by the consensus, if any, can be found here:
  2304. https://consensus-health.torproject.org/#consensusparams
  2305. If any of the DoS mitigations are enabled, a heartbeat message will appear in
  2306. your log at NOTICE level which looks like:
  2307. DoS mitigation since startup: 429042 circuits rejected, 17 marked addresses.
  2308. 2238 connections closed. 8052 single hop clients refused.
  2309. The following options are useful only for a public relay. They control the
  2310. Denial of Service mitigation subsystem described above.
  2311. [[DoSCircuitCreationEnabled]] **DoSCircuitCreationEnabled** **0**|**1**|**auto**::
  2312. Enable circuit creation DoS mitigation. If set to 1 (enabled), tor will
  2313. cache client IPs along with statistics in order to detect circuit DoS
  2314. attacks. If an address is positively identified, tor will activate
  2315. defenses against the address. See the DoSCircuitCreationDefenseType option
  2316. for more details. This is a client to relay detection only. "auto" means
  2317. use the consensus parameter. If not defined in the consensus, the value is 0.
  2318. (Default: auto)
  2319. [[DoSCircuitCreationMinConnections]] **DoSCircuitCreationMinConnections** __NUM__::
  2320. Minimum threshold of concurrent connections before a client address can be
  2321. flagged as executing a circuit creation DoS. In other words, once a client
  2322. address reaches the circuit rate and has a minimum of NUM concurrent
  2323. connections, a detection is positive. "0" means use the consensus
  2324. parameter. If not defined in the consensus, the value is 3.
  2325. (Default: 0)
  2326. [[DoSCircuitCreationRate]] **DoSCircuitCreationRate** __NUM__::
  2327. The allowed circuit creation rate per second applied per client IP
  2328. address. If this option is 0, it obeys a consensus parameter. If not
  2329. defined in the consensus, the value is 3.
  2330. (Default: 0)
  2331. [[DoSCircuitCreationBurst]] **DoSCircuitCreationBurst** __NUM__::
  2332. The allowed circuit creation burst per client IP address. If the circuit
  2333. rate and the burst are reached, a client is marked as executing a circuit
  2334. creation DoS. "0" means use the consensus parameter. If not defined in the
  2335. consensus, the value is 90.
  2336. (Default: 0)
  2337. [[DoSCircuitCreationDefenseType]] **DoSCircuitCreationDefenseType** __NUM__::
  2338. This is the type of defense applied to a detected client address. The
  2339. possible values are:
  2340. +
  2341. 1: No defense.
  2342. +
  2343. 2: Refuse circuit creation for the DoSCircuitCreationDefenseTimePeriod period of time.
  2344. +
  2345. "0" means use the consensus parameter. If not defined in the consensus, the value is 2.
  2346. (Default: 0)
  2347. [[DoSCircuitCreationDefenseTimePeriod]] **DoSCircuitCreationDefenseTimePeriod** __N__ **seconds**|**minutes**|**hours**::
  2348. The base time period in seconds that the DoS defense is activated for. The
  2349. actual value is selected randomly for each activation from N+1 to 3/2 * N.
  2350. "0" means use the consensus parameter. If not defined in the consensus,
  2351. the value is 3600 seconds (1 hour).
  2352. (Default: 0)
  2353. [[DoSConnectionEnabled]] **DoSConnectionEnabled** **0**|**1**|**auto**::
  2354. Enable the connection DoS mitigation. If set to 1 (enabled), for client
  2355. address only, this allows tor to mitigate against large number of
  2356. concurrent connections made by a single IP address. "auto" means use the
  2357. consensus parameter. If not defined in the consensus, the value is 0.
  2358. (Default: auto)
  2359. [[DoSConnectionMaxConcurrentCount]] **DoSConnectionMaxConcurrentCount** __NUM__::
  2360. The maximum threshold of concurrent connection from a client IP address.
  2361. Above this limit, a defense selected by DoSConnectionDefenseType is
  2362. applied. "0" means use the consensus parameter. If not defined in the
  2363. consensus, the value is 100.
  2364. (Default: 0)
  2365. [[DoSConnectionDefenseType]] **DoSConnectionDefenseType** __NUM__::
  2366. This is the type of defense applied to a detected client address for the
  2367. connection mitigation. The possible values are:
  2368. +
  2369. 1: No defense.
  2370. +
  2371. 2: Immediately close new connections.
  2372. +
  2373. "0" means use the consensus parameter. If not defined in the consensus, the value is 2.
  2374. (Default: 0)
  2375. [[DoSRefuseSingleHopClientRendezvous]] **DoSRefuseSingleHopClientRendezvous** **0**|**1**|**auto**::
  2376. Refuse establishment of rendezvous points for single hop clients. In other
  2377. words, if a client directly connects to the relay and sends an
  2378. ESTABLISH_RENDEZVOUS cell, it is silently dropped. "auto" means use the
  2379. consensus parameter. If not defined in the consensus, the value is 0.
  2380. (Default: auto)
  2381. DIRECTORY AUTHORITY SERVER OPTIONS
  2382. ----------------------------------
  2383. The following options enable operation as a directory authority, and
  2384. control how Tor behaves as a directory authority. You should not need
  2385. to adjust any of them if you're running a regular relay or exit server
  2386. on the public Tor network.
  2387. [[AuthoritativeDirectory]] **AuthoritativeDirectory** **0**|**1**::
  2388. When this option is set to 1, Tor operates as an authoritative directory
  2389. server. Instead of caching the directory, it generates its own list of
  2390. good servers, signs it, and sends that to the clients. Unless the clients
  2391. already have you listed as a trusted directory, you probably do not want
  2392. to set this option.
  2393. [[V3AuthoritativeDirectory]] **V3AuthoritativeDirectory** **0**|**1**::
  2394. When this option is set in addition to **AuthoritativeDirectory**, Tor
  2395. generates version 3 network statuses and serves descriptors, etc as
  2396. described in dir-spec.txt file of https://spec.torproject.org/[torspec]
  2397. (for Tor clients and servers running at least 0.2.0.x).
  2398. [[VersioningAuthoritativeDirectory]] **VersioningAuthoritativeDirectory** **0**|**1**::
  2399. When this option is set to 1, Tor adds information on which versions of
  2400. Tor are still believed safe for use to the published directory. Each
  2401. version 1 authority is automatically a versioning authority; version 2
  2402. authorities provide this service optionally. See **RecommendedVersions**,
  2403. **RecommendedClientVersions**, and **RecommendedServerVersions**.
  2404. [[RecommendedVersions]] **RecommendedVersions** __STRING__::
  2405. STRING is a comma-separated list of Tor versions currently believed to be
  2406. safe. The list is included in each directory, and nodes which pull down the
  2407. directory learn whether they need to upgrade. This option can appear
  2408. multiple times: the values from multiple lines are spliced together. When
  2409. this is set then **VersioningAuthoritativeDirectory** should be set too.
  2410. [[RecommendedClientVersions]] **RecommendedClientVersions** __STRING__::
  2411. STRING is a comma-separated list of Tor versions currently believed to be
  2412. safe for clients to use. This information is included in version 2
  2413. directories. If this is not set then the value of **RecommendedVersions**
  2414. is used. When this is set then **VersioningAuthoritativeDirectory** should
  2415. be set too.
  2416. [[BridgeAuthoritativeDir]] **BridgeAuthoritativeDir** **0**|**1**::
  2417. When this option is set in addition to **AuthoritativeDirectory**, Tor
  2418. accepts and serves server descriptors, but it caches and serves the main
  2419. networkstatus documents rather than generating its own. (Default: 0)
  2420. [[MinUptimeHidServDirectoryV2]] **MinUptimeHidServDirectoryV2** __N__ **seconds**|**minutes**|**hours**|**days**|**weeks**::
  2421. Minimum uptime of a v2 hidden service directory to be accepted as such by
  2422. authoritative directories. (Default: 25 hours)
  2423. [[RecommendedServerVersions]] **RecommendedServerVersions** __STRING__::
  2424. STRING is a comma-separated list of Tor versions currently believed to be
  2425. safe for servers to use. This information is included in version 2
  2426. directories. If this is not set then the value of **RecommendedVersions**
  2427. is used. When this is set then **VersioningAuthoritativeDirectory** should
  2428. be set too.
  2429. [[ConsensusParams]] **ConsensusParams** __STRING__::
  2430. STRING is a space-separated list of key=value pairs that Tor will include
  2431. in the "params" line of its networkstatus vote.
  2432. [[DirAllowPrivateAddresses]] **DirAllowPrivateAddresses** **0**|**1**::
  2433. If set to 1, Tor will accept server descriptors with arbitrary "Address"
  2434. elements. Otherwise, if the address is not an IP address or is a private IP
  2435. address, it will reject the server descriptor. Additionally, Tor
  2436. will allow exit policies for private networks to fulfill Exit flag
  2437. requirements. (Default: 0)
  2438. [[AuthDirBadExit]] **AuthDirBadExit** __AddressPattern...__::
  2439. Authoritative directories only. A set of address patterns for servers that
  2440. will be listed as bad exits in any network status document this authority
  2441. publishes, if **AuthDirListBadExits** is set. +
  2442. +
  2443. (The address pattern syntax here and in the options below
  2444. is the same as for exit policies, except that you don't need to say
  2445. "accept" or "reject", and ports are not needed.)
  2446. [[AuthDirInvalid]] **AuthDirInvalid** __AddressPattern...__::
  2447. Authoritative directories only. A set of address patterns for servers that
  2448. will never be listed as "valid" in any network status document that this
  2449. authority publishes.
  2450. [[AuthDirReject]] **AuthDirReject** __AddressPattern__...::
  2451. Authoritative directories only. A set of address patterns for servers that
  2452. will never be listed at all in any network status document that this
  2453. authority publishes, or accepted as an OR address in any descriptor
  2454. submitted for publication by this authority.
  2455. [[AuthDirBadExitCCs]] **AuthDirBadExitCCs** __CC__,... +
  2456. [[AuthDirInvalidCCs]] **AuthDirInvalidCCs** __CC__,... +
  2457. [[AuthDirRejectCCs]] **AuthDirRejectCCs** __CC__,...::
  2458. Authoritative directories only. These options contain a comma-separated
  2459. list of country codes such that any server in one of those country codes
  2460. will be marked as a bad exit/invalid for use, or rejected
  2461. entirely.
  2462. [[AuthDirListBadExits]] **AuthDirListBadExits** **0**|**1**::
  2463. Authoritative directories only. If set to 1, this directory has some
  2464. opinion about which nodes are unsuitable as exit nodes. (Do not set this to
  2465. 1 unless you plan to list non-functioning exits as bad; otherwise, you are
  2466. effectively voting in favor of every declared exit as an exit.)
  2467. [[AuthDirMaxServersPerAddr]] **AuthDirMaxServersPerAddr** __NUM__::
  2468. Authoritative directories only. The maximum number of servers that we will
  2469. list as acceptable on a single IP address. Set this to "0" for "no limit".
  2470. (Default: 2)
  2471. [[AuthDirFastGuarantee]] **AuthDirFastGuarantee** __N__ **bytes**|**KBytes**|**MBytes**|**GBytes**|**TBytes**|**KBits**|**MBits**|**GBits**|**TBits**::
  2472. Authoritative directories only. If non-zero, always vote the
  2473. Fast flag for any relay advertising this amount of capacity or
  2474. more. (Default: 100 KBytes)
  2475. [[AuthDirGuardBWGuarantee]] **AuthDirGuardBWGuarantee** __N__ **bytes**|**KBytes**|**MBytes**|**GBytes**|**TBytes**|**KBits**|**MBits**|**GBits**|**TBits**::
  2476. Authoritative directories only. If non-zero, this advertised capacity
  2477. or more is always sufficient to satisfy the bandwidth requirement
  2478. for the Guard flag. (Default: 2 MBytes)
  2479. [[AuthDirPinKeys]] **AuthDirPinKeys** **0**|**1**::
  2480. Authoritative directories only. If non-zero, do not allow any relay to
  2481. publish a descriptor if any other relay has reserved its <Ed25519,RSA>
  2482. identity keypair. In all cases, Tor records every keypair it accepts
  2483. in a journal if it is new, or if it differs from the most recently
  2484. accepted pinning for one of the keys it contains. (Default: 1)
  2485. [[AuthDirSharedRandomness]] **AuthDirSharedRandomness** **0**|**1**::
  2486. Authoritative directories only. Switch for the shared random protocol.
  2487. If zero, the authority won't participate in the protocol. If non-zero
  2488. (default), the flag "shared-rand-participate" is added to the authority
  2489. vote indicating participation in the protocol. (Default: 1)
  2490. [[AuthDirTestEd25519LinkKeys]] **AuthDirTestEd25519LinkKeys** **0**|**1**::
  2491. Authoritative directories only. If this option is set to 0, then we treat
  2492. relays as "Running" if their RSA key is correct when we probe them,
  2493. regardless of their Ed25519 key. We should only ever set this option to 0
  2494. if there is some major bug in Ed25519 link authentication that causes us
  2495. to label all the relays as not Running. (Default: 1)
  2496. [[BridgePassword]] **BridgePassword** __Password__::
  2497. If set, contains an HTTP authenticator that tells a bridge authority to
  2498. serve all requested bridge information. Used by the (only partially
  2499. implemented) "bridge community" design, where a community of bridge
  2500. relay operators all use an alternate bridge directory authority,
  2501. and their target user audience can periodically fetch the list of
  2502. available community bridges to stay up-to-date. (Default: not set)
  2503. [[V3AuthVotingInterval]] **V3AuthVotingInterval** __N__ **minutes**|**hours**::
  2504. V3 authoritative directories only. Configures the server's preferred voting
  2505. interval. Note that voting will __actually__ happen at an interval chosen
  2506. by consensus from all the authorities' preferred intervals. This time
  2507. SHOULD divide evenly into a day. (Default: 1 hour)
  2508. [[V3AuthVoteDelay]] **V3AuthVoteDelay** __N__ **minutes**|**hours**::
  2509. V3 authoritative directories only. Configures the server's preferred delay
  2510. between publishing its vote and assuming it has all the votes from all the
  2511. other authorities. Note that the actual time used is not the server's
  2512. preferred time, but the consensus of all preferences. (Default: 5 minutes)
  2513. [[V3AuthDistDelay]] **V3AuthDistDelay** __N__ **minutes**|**hours**::
  2514. V3 authoritative directories only. Configures the server's preferred delay
  2515. between publishing its consensus and signature and assuming it has all the
  2516. signatures from all the other authorities. Note that the actual time used
  2517. is not the server's preferred time, but the consensus of all preferences.
  2518. (Default: 5 minutes)
  2519. [[V3AuthNIntervalsValid]] **V3AuthNIntervalsValid** __NUM__::
  2520. V3 authoritative directories only. Configures the number of VotingIntervals
  2521. for which each consensus should be valid for. Choosing high numbers
  2522. increases network partitioning risks; choosing low numbers increases
  2523. directory traffic. Note that the actual number of intervals used is not the
  2524. server's preferred number, but the consensus of all preferences. Must be at
  2525. least 2. (Default: 3)
  2526. [[V3BandwidthsFile]] **V3BandwidthsFile** __FILENAME__::
  2527. V3 authoritative directories only. Configures the location of the
  2528. bandwidth-authority generated file storing information on relays' measured
  2529. bandwidth capacities. To avoid inconsistent reads, bandwidth data should
  2530. be written to temporary file, then renamed to the configured filename.
  2531. (Default: unset)
  2532. [[V3AuthUseLegacyKey]] **V3AuthUseLegacyKey** **0**|**1**::
  2533. If set, the directory authority will sign consensuses not only with its
  2534. own signing key, but also with a "legacy" key and certificate with a
  2535. different identity. This feature is used to migrate directory authority
  2536. keys in the event of a compromise. (Default: 0)
  2537. [[AuthDirHasIPv6Connectivity]] **AuthDirHasIPv6Connectivity** **0**|**1**::
  2538. Authoritative directories only. When set to 0, OR ports with an
  2539. IPv6 address are not included in the authority's votes. When set to 1,
  2540. IPv6 OR ports are tested for reachability like IPv4 OR ports. If the
  2541. reachability test succeeds, the authority votes for the IPv6 ORPort, and
  2542. votes Running for the relay. If the reachability test fails, the authority
  2543. does not vote for the IPv6 ORPort, and does not vote Running (Default: 0) +
  2544. +
  2545. The content of the consensus depends on the number of voting authorities
  2546. that set AuthDirHasIPv6Connectivity:
  2547. If no authorities set AuthDirHasIPv6Connectivity 1, there will be no
  2548. IPv6 ORPorts in the consensus.
  2549. If a minority of authorities set AuthDirHasIPv6Connectivity 1,
  2550. unreachable IPv6 ORPorts will be removed from the consensus. But the
  2551. majority of IPv4-only authorities will still vote the relay as Running.
  2552. Reachable IPv6 ORPort lines will be included in the consensus
  2553. If a majority of voting authorities set AuthDirHasIPv6Connectivity 1,
  2554. relays with unreachable IPv6 ORPorts will not be listed as Running.
  2555. Reachable IPv6 ORPort lines will be included in the consensus
  2556. (To ensure that any valid majority will vote relays with unreachable
  2557. IPv6 ORPorts not Running, 75% of authorities must set
  2558. AuthDirHasIPv6Connectivity 1.)
  2559. [[MinMeasuredBWsForAuthToIgnoreAdvertised]] **MinMeasuredBWsForAuthToIgnoreAdvertised** __N__::
  2560. A total value, in abstract bandwidth units, describing how much
  2561. measured total bandwidth an authority should have observed on the network
  2562. before it will treat advertised bandwidths as wholly
  2563. unreliable. (Default: 500)
  2564. HIDDEN SERVICE OPTIONS
  2565. ----------------------
  2566. The following options are used to configure a hidden service. Some options
  2567. apply per service and some apply for the whole tor instance.
  2568. The next section describes the per service options that can only be set
  2569. **after** the **HiddenServiceDir** directive
  2570. **PER SERVICE OPTIONS:**
  2571. [[HiddenServiceDir]] **HiddenServiceDir** __DIRECTORY__::
  2572. Store data files for a hidden service in DIRECTORY. Every hidden service
  2573. must have a separate directory. You may use this option multiple times to
  2574. specify multiple services. If DIRECTORY does not exist, Tor will create it.
  2575. Please note that you cannot add new Onion Service to already running Tor
  2576. instance if **Sandbox** is enabled.
  2577. (Note: in current versions of Tor, if DIRECTORY is a relative path,
  2578. it will be relative to the current
  2579. working directory of Tor instance, not to its DataDirectory. Do not
  2580. rely on this behavior; it is not guaranteed to remain the same in future
  2581. versions.)
  2582. [[HiddenServicePort]] **HiddenServicePort** __VIRTPORT__ [__TARGET__]::
  2583. Configure a virtual port VIRTPORT for a hidden service. You may use this
  2584. option multiple times; each time applies to the service using the most
  2585. recent HiddenServiceDir. By default, this option maps the virtual port to
  2586. the same port on 127.0.0.1 over TCP. You may override the target port,
  2587. address, or both by specifying a target of addr, port, addr:port, or
  2588. **unix:**__path__. (You can specify an IPv6 target as [addr]:port. Unix
  2589. paths may be quoted, and may use standard C escapes.)
  2590. You may also have multiple lines with the same VIRTPORT: when a user
  2591. connects to that VIRTPORT, one of the TARGETs from those lines will be
  2592. chosen at random. Note that address-port pairs have to be comma-separated.
  2593. [[HiddenServiceVersion]] **HiddenServiceVersion** **2**|**3**::
  2594. A list of rendezvous service descriptor versions to publish for the hidden
  2595. service. Currently, versions 2 and 3 are supported. (Default: 3)
  2596. [[HiddenServiceAuthorizeClient]] **HiddenServiceAuthorizeClient** __auth-type__ __client-name__,__client-name__,__...__::
  2597. If configured, the v2 hidden service is accessible for authorized clients
  2598. only. The auth-type can either be \'basic' for a general-purpose
  2599. authorization protocol or \'stealth' for a less scalable protocol that also
  2600. hides service activity from unauthorized clients. Only clients that are
  2601. listed here are authorized to access the hidden service. Valid client names
  2602. are 1 to 16 characters long and only use characters in A-Za-z0-9+-_ (no
  2603. spaces). If this option is set, the hidden service is not accessible for
  2604. clients without authorization any more. Generated authorization data can be
  2605. found in the hostname file. Clients need to put this authorization data in
  2606. their configuration file using **HidServAuth**. This option is only for v2
  2607. services; v3 services configure client authentication in a subdirectory of
  2608. HiddenServiceDir instead (see the **Client Authorization** section).
  2609. [[HiddenServiceAllowUnknownPorts]] **HiddenServiceAllowUnknownPorts** **0**|**1**::
  2610. If set to 1, then connections to unrecognized ports do not cause the
  2611. current hidden service to close rendezvous circuits. (Setting this to 0 is
  2612. not an authorization mechanism; it is instead meant to be a mild
  2613. inconvenience to port-scanners.) (Default: 0)
  2614. [[HiddenServiceExportCircuitID]] **HiddenServiceExportCircuitID** __protocol__::
  2615. The onion service will use the given protocol to expose the global circuit
  2616. identifier of each inbound client circuit. The only
  2617. protocol supported right now \'haproxy'. This option is only for v3
  2618. services. (Default: none) +
  2619. +
  2620. The haproxy option works in the following way: when the feature is
  2621. enabled, the Tor process will write a header line when a client is connecting
  2622. to the onion service. The header will look like this: +
  2623. +
  2624. "PROXY TCP6 fc00:dead:beef:4dad::ffff:ffff ::1 65535 42\r\n" +
  2625. +
  2626. We encode the "global circuit identifier" as the last 32-bits of the first
  2627. IPv6 address. All other values in the header can safely be ignored. You can
  2628. compute the global circuit identifier using the following formula given the
  2629. IPv6 address "fc00:dead:beef:4dad::AABB:CCDD": +
  2630. +
  2631. global_circuit_id = (0xAA << 24) + (0xBB << 16) + (0xCC << 8) + 0xDD; +
  2632. +
  2633. In the case above, where the last 32-bits are 0xffffffff, the global circuit
  2634. identifier would be 4294967295. You can use this value together with Tor's
  2635. control port to terminate particular circuits using their global
  2636. circuit identifiers. For more information about this see control-spec.txt. +
  2637. +
  2638. The HAProxy version 1 protocol is described in detail at
  2639. https://www.haproxy.org/download/1.8/doc/proxy-protocol.txt
  2640. [[HiddenServiceMaxStreams]] **HiddenServiceMaxStreams** __N__::
  2641. The maximum number of simultaneous streams (connections) per rendezvous
  2642. circuit. The maximum value allowed is 65535. (Setting this to 0 will allow
  2643. an unlimited number of simultaneous streams.) (Default: 0)
  2644. [[HiddenServiceMaxStreamsCloseCircuit]] **HiddenServiceMaxStreamsCloseCircuit** **0**|**1**::
  2645. If set to 1, then exceeding **HiddenServiceMaxStreams** will cause the
  2646. offending rendezvous circuit to be torn down, as opposed to stream creation
  2647. requests that exceed the limit being silently ignored. (Default: 0)
  2648. [[RendPostPeriod]] **RendPostPeriod** __N__ **seconds**|**minutes**|**hours**|**days**|**weeks**::
  2649. Every time the specified period elapses, Tor uploads any rendezvous
  2650. service descriptors to the directory servers. This information is also
  2651. uploaded whenever it changes. Minimum value allowed is 10 minutes and
  2652. maximum is 3.5 days. This option is only for v2 services.
  2653. (Default: 1 hour)
  2654. [[HiddenServiceDirGroupReadable]] **HiddenServiceDirGroupReadable** **0**|**1**::
  2655. If this option is set to 1, allow the filesystem group to read the
  2656. hidden service directory and hostname file. If the option is set to 0,
  2657. only owner is able to read the hidden service directory. (Default: 0)
  2658. Has no effect on Windows.
  2659. [[HiddenServiceNumIntroductionPoints]] **HiddenServiceNumIntroductionPoints** __NUM__::
  2660. Number of introduction points the hidden service will have. You can't
  2661. have more than 10 for v2 service and 20 for v3. (Default: 3)
  2662. [[HiddenServiceEnableIntroDoSDefense]] **HiddenServiceEnableIntroDoSDefense** **0**|**1**::
  2663. Enable DoS defense at the intropoint level. When this is enabled, the
  2664. rate and burst parameter (see below) will be sent to the intro point which
  2665. will then use them to apply rate limiting for introduction request to this
  2666. service.
  2667. +
  2668. The introduction point honors the consensus parameters except if this is
  2669. specifically set by the service operator using this option. The service
  2670. never looks at the consensus parameters in order to enable or disable this
  2671. defense. (Default: 0)
  2672. [[HiddenServiceEnableIntroDoSRatePerSec]] **HiddenServiceEnableIntroDoSRatePerSec** __NUM__::
  2673. The allowed client introduction rate per second at the introduction
  2674. point. If this option is 0, it is considered infinite and thus if
  2675. **HiddenServiceEnableIntroDoSDefense** is set, it then effectively
  2676. disables the defenses. (Default: 25)
  2677. [[HiddenServiceEnableIntroDoSBurstPerSec]] **HiddenServiceEnableIntroDoSBurstPerSec** __NUM__::
  2678. The allowed client introduction burst per second at the introduction
  2679. point. If this option is 0, it is considered infinite and thus if
  2680. **HiddenServiceEnableIntroDoSDefense** is set, it then effectively
  2681. disables the defenses. (Default: 200)
  2682. **PER INSTANCE OPTIONS:**
  2683. [[PublishHidServDescriptors]] **PublishHidServDescriptors** **0**|**1**::
  2684. If set to 0, Tor will run any hidden services you configure, but it won't
  2685. advertise them to the rendezvous directory. This option is only useful if
  2686. you're using a Tor controller that handles hidserv publishing for you.
  2687. (Default: 1)
  2688. [[HiddenServiceSingleHopMode]] **HiddenServiceSingleHopMode** **0**|**1**::
  2689. **Experimental - Non Anonymous** Hidden Services on a tor instance in
  2690. HiddenServiceSingleHopMode make one-hop (direct) circuits between the onion
  2691. service server, and the introduction and rendezvous points. (Onion service
  2692. descriptors are still posted using 3-hop paths, to avoid onion service
  2693. directories blocking the service.)
  2694. This option makes every hidden service instance hosted by a tor instance a
  2695. Single Onion Service. One-hop circuits make Single Onion servers easily
  2696. locatable, but clients remain location-anonymous. However, the fact that a
  2697. client is accessing a Single Onion rather than a Hidden Service may be
  2698. statistically distinguishable. +
  2699. +
  2700. **WARNING:** Once a hidden service directory has been used by a tor
  2701. instance in HiddenServiceSingleHopMode, it can **NEVER** be used again for
  2702. a hidden service. It is best practice to create a new hidden service
  2703. directory, key, and address for each new Single Onion Service and Hidden
  2704. Service. It is not possible to run Single Onion Services and Hidden
  2705. Services from the same tor instance: they should be run on different
  2706. servers with different IP addresses. +
  2707. +
  2708. HiddenServiceSingleHopMode requires HiddenServiceNonAnonymousMode to be set
  2709. to 1. Since a Single Onion service is non-anonymous, you can not configure
  2710. a SOCKSPort on a tor instance that is running in
  2711. **HiddenServiceSingleHopMode**. Can not be changed while tor is running.
  2712. (Default: 0)
  2713. [[HiddenServiceNonAnonymousMode]] **HiddenServiceNonAnonymousMode** **0**|**1**::
  2714. Makes hidden services non-anonymous on this tor instance. Allows the
  2715. non-anonymous HiddenServiceSingleHopMode. Enables direct connections in the
  2716. server-side hidden service protocol. If you are using this option,
  2717. you need to disable all client-side services on your Tor instance,
  2718. including setting SOCKSPort to "0". Can not be changed while tor is
  2719. running. (Default: 0)
  2720. Client Authorization
  2721. --------------------
  2722. (Version 3 only)
  2723. Service side:
  2724. To configure client authorization on the service side, the
  2725. "<HiddenServiceDir>/authorized_clients/" directory needs to exist. Each file
  2726. in that directory should be suffixed with ".auth" (i.e. "alice.auth"; the
  2727. file name is irrelevant) and its content format MUST be:
  2728. <auth-type>:<key-type>:<base32-encoded-public-key>
  2729. The supported <auth-type> are: "descriptor". The supported <key-type> are:
  2730. "x25519". The <base32-encoded-public-key> is the base32 representation of
  2731. the raw key bytes only (32 bytes for x25519).
  2732. Each file MUST contain one line only. Any malformed file will be
  2733. ignored. Client authorization will only be enabled for the service if tor
  2734. successfully loads at least one authorization file.
  2735. Note that once you've configured client authorization, anyone else with the
  2736. address won't be able to access it from this point on. If no authorization is
  2737. configured, the service will be accessible to anyone with the onion address.
  2738. Revoking a client can be done by removing their ".auth" file, however the
  2739. revocation will be in effect only after the tor process gets restarted even if
  2740. a SIGHUP takes place.
  2741. Client side:
  2742. To access a v3 onion service with client authorization as a client, make sure
  2743. you have ClientOnionAuthDir set in your torrc. Then, in the
  2744. <ClientOnionAuthDir> directory, create an .auth_private file for the onion
  2745. service corresponding to this key (i.e. 'bob_onion.auth_private'). The
  2746. contents of the <ClientOnionAuthDir>/<user>.auth_private file should look like:
  2747. <56-char-onion-addr-without-.onion-part>:descriptor:x25519:<x25519 private key in base32>
  2748. For more information, please see https://2019.www.torproject.org/docs/tor-onion-service.html.en#ClientAuthorization .
  2749. TESTING NETWORK OPTIONS
  2750. -----------------------
  2751. The following options are used for running a testing Tor network.
  2752. [[TestingTorNetwork]] **TestingTorNetwork** **0**|**1**::
  2753. If set to 1, Tor adjusts default values of the configuration options below,
  2754. so that it is easier to set up a testing Tor network. May only be set if
  2755. non-default set of DirAuthorities is set. Cannot be unset while Tor is
  2756. running.
  2757. (Default: 0) +
  2758. ServerDNSAllowBrokenConfig 1
  2759. DirAllowPrivateAddresses 1
  2760. EnforceDistinctSubnets 0
  2761. AssumeReachable 1
  2762. AuthDirMaxServersPerAddr 0
  2763. AuthDirMaxServersPerAuthAddr 0
  2764. ClientBootstrapConsensusAuthorityDownloadInitialDelay 0
  2765. ClientBootstrapConsensusFallbackDownloadInitialDelay 0
  2766. ClientBootstrapConsensusAuthorityOnlyDownloadInitialDelay 0
  2767. ClientDNSRejectInternalAddresses 0
  2768. ClientRejectInternalAddresses 0
  2769. CountPrivateBandwidth 1
  2770. ExitPolicyRejectPrivate 0
  2771. ExtendAllowPrivateAddresses 1
  2772. V3AuthVotingInterval 5 minutes
  2773. V3AuthVoteDelay 20 seconds
  2774. V3AuthDistDelay 20 seconds
  2775. MinUptimeHidServDirectoryV2 0 seconds
  2776. TestingV3AuthInitialVotingInterval 5 minutes
  2777. TestingV3AuthInitialVoteDelay 20 seconds
  2778. TestingV3AuthInitialDistDelay 20 seconds
  2779. TestingAuthDirTimeToLearnReachability 0 minutes
  2780. TestingEstimatedDescriptorPropagationTime 0 minutes
  2781. TestingServerDownloadInitialDelay 0
  2782. TestingClientDownloadInitialDelay 0
  2783. TestingServerConsensusDownloadInitialDelay 0
  2784. TestingClientConsensusDownloadInitialDelay 0
  2785. TestingBridgeDownloadInitialDelay 10
  2786. TestingBridgeBootstrapDownloadInitialDelay 0
  2787. TestingClientMaxIntervalWithoutRequest 5 seconds
  2788. TestingDirConnectionMaxStall 30 seconds
  2789. TestingEnableConnBwEvent 1
  2790. TestingEnableCellStatsEvent 1
  2791. [[TestingV3AuthInitialVotingInterval]] **TestingV3AuthInitialVotingInterval** __N__ **minutes**|**hours**::
  2792. Like V3AuthVotingInterval, but for initial voting interval before the first
  2793. consensus has been created. Changing this requires that
  2794. **TestingTorNetwork** is set. (Default: 30 minutes)
  2795. [[TestingV3AuthInitialVoteDelay]] **TestingV3AuthInitialVoteDelay** __N__ **minutes**|**hours**::
  2796. Like V3AuthVoteDelay, but for initial voting interval before
  2797. the first consensus has been created. Changing this requires that
  2798. **TestingTorNetwork** is set. (Default: 5 minutes)
  2799. [[TestingV3AuthInitialDistDelay]] **TestingV3AuthInitialDistDelay** __N__ **minutes**|**hours**::
  2800. Like V3AuthDistDelay, but for initial voting interval before
  2801. the first consensus has been created. Changing this requires that
  2802. **TestingTorNetwork** is set. (Default: 5 minutes)
  2803. [[TestingV3AuthVotingStartOffset]] **TestingV3AuthVotingStartOffset** __N__ **seconds**|**minutes**|**hours**::
  2804. Directory authorities offset voting start time by this much.
  2805. Changing this requires that **TestingTorNetwork** is set. (Default: 0)
  2806. [[TestingAuthDirTimeToLearnReachability]] **TestingAuthDirTimeToLearnReachability** __N__ **minutes**|**hours**::
  2807. After starting as an authority, do not make claims about whether routers
  2808. are Running until this much time has passed. Changing this requires
  2809. that **TestingTorNetwork** is set. (Default: 30 minutes)
  2810. [[TestingEstimatedDescriptorPropagationTime]] **TestingEstimatedDescriptorPropagationTime** __N__ **minutes**|**hours**::
  2811. Clients try downloading server descriptors from directory caches after this
  2812. time. Changing this requires that **TestingTorNetwork** is set. (Default:
  2813. 10 minutes)
  2814. [[TestingMinFastFlagThreshold]] **TestingMinFastFlagThreshold** __N__ **bytes**|**KBytes**|**MBytes**|**GBytes**|**TBytes**|**KBits**|**MBits**|**GBits**|**TBits**::
  2815. Minimum value for the Fast flag. Overrides the ordinary minimum taken
  2816. from the consensus when TestingTorNetwork is set. (Default: 0.)
  2817. [[TestingServerDownloadInitialDelay]] **TestingServerDownloadInitialDelay** __N__::
  2818. Initial delay in seconds for when servers should download things in general. Changing this
  2819. requires that **TestingTorNetwork** is set. (Default: 0)
  2820. [[TestingClientDownloadInitialDelay]] **TestingClientDownloadInitialDelay** __N__::
  2821. Initial delay in seconds for when clients should download things in general. Changing this
  2822. requires that **TestingTorNetwork** is set. (Default: 0)
  2823. [[TestingServerConsensusDownloadInitialDelay]] **TestingServerConsensusDownloadInitialDelay** __N__::
  2824. Initial delay in seconds for when servers should download consensuses. Changing this
  2825. requires that **TestingTorNetwork** is set. (Default: 0)
  2826. [[TestingClientConsensusDownloadInitialDelay]] **TestingClientConsensusDownloadInitialDelay** __N__::
  2827. Initial delay in seconds for when clients should download consensuses. Changing this
  2828. requires that **TestingTorNetwork** is set. (Default: 0)
  2829. [[TestingBridgeDownloadInitialDelay]] **TestingBridgeDownloadInitialDelay** __N__::
  2830. Initial delay in seconds for when clients should download each bridge descriptor when they
  2831. know that one or more of their configured bridges are running. Changing
  2832. this requires that **TestingTorNetwork** is set. (Default: 10800)
  2833. [[TestingBridgeBootstrapDownloadInitialDelay]] **TestingBridgeBootstrapDownloadInitialDelay** __N__::
  2834. Initial delay in seconds for when clients should download each bridge descriptor when they
  2835. have just started, or when they can not contact any of their bridges.
  2836. Changing this requires that **TestingTorNetwork** is set. (Default: 0)
  2837. [[TestingClientMaxIntervalWithoutRequest]] **TestingClientMaxIntervalWithoutRequest** __N__ **seconds**|**minutes**::
  2838. When directory clients have only a few descriptors to request, they batch
  2839. them until they have more, or until this amount of time has passed.
  2840. Changing this requires that **TestingTorNetwork** is set. (Default: 10
  2841. minutes)
  2842. [[TestingDirConnectionMaxStall]] **TestingDirConnectionMaxStall** __N__ **seconds**|**minutes**::
  2843. Let a directory connection stall this long before expiring it.
  2844. Changing this requires that **TestingTorNetwork** is set. (Default:
  2845. 5 minutes)
  2846. [[TestingDirAuthVoteExit]] **TestingDirAuthVoteExit** __node__,__node__,__...__::
  2847. A list of identity fingerprints, country codes, and
  2848. address patterns of nodes to vote Exit for regardless of their
  2849. uptime, bandwidth, or exit policy. See the **ExcludeNodes**
  2850. option for more information on how to specify nodes. +
  2851. +
  2852. In order for this option to have any effect, **TestingTorNetwork**
  2853. has to be set. See the **ExcludeNodes** option for more
  2854. information on how to specify nodes.
  2855. [[TestingDirAuthVoteExitIsStrict]] **TestingDirAuthVoteExitIsStrict** **0**|**1** ::
  2856. If True (1), a node will never receive the Exit flag unless it is specified
  2857. in the **TestingDirAuthVoteExit** list, regardless of its uptime, bandwidth,
  2858. or exit policy. +
  2859. +
  2860. In order for this option to have any effect, **TestingTorNetwork**
  2861. has to be set.
  2862. [[TestingDirAuthVoteGuard]] **TestingDirAuthVoteGuard** __node__,__node__,__...__::
  2863. A list of identity fingerprints and country codes and
  2864. address patterns of nodes to vote Guard for regardless of their
  2865. uptime and bandwidth. See the **ExcludeNodes** option for more
  2866. information on how to specify nodes. +
  2867. +
  2868. In order for this option to have any effect, **TestingTorNetwork**
  2869. has to be set.
  2870. [[TestingDirAuthVoteGuardIsStrict]] **TestingDirAuthVoteGuardIsStrict** **0**|**1** ::
  2871. If True (1), a node will never receive the Guard flag unless it is specified
  2872. in the **TestingDirAuthVoteGuard** list, regardless of its uptime and bandwidth. +
  2873. +
  2874. In order for this option to have any effect, **TestingTorNetwork**
  2875. has to be set.
  2876. [[TestingDirAuthVoteHSDir]] **TestingDirAuthVoteHSDir** __node__,__node__,__...__::
  2877. A list of identity fingerprints and country codes and
  2878. address patterns of nodes to vote HSDir for regardless of their
  2879. uptime and DirPort. See the **ExcludeNodes** option for more
  2880. information on how to specify nodes. +
  2881. +
  2882. In order for this option to have any effect, **TestingTorNetwork**
  2883. must be set.
  2884. [[TestingDirAuthVoteHSDirIsStrict]] **TestingDirAuthVoteHSDirIsStrict** **0**|**1** ::
  2885. If True (1), a node will never receive the HSDir flag unless it is specified
  2886. in the **TestingDirAuthVoteHSDir** list, regardless of its uptime and DirPort. +
  2887. +
  2888. In order for this option to have any effect, **TestingTorNetwork**
  2889. has to be set.
  2890. [[TestingEnableConnBwEvent]] **TestingEnableConnBwEvent** **0**|**1**::
  2891. If this option is set, then Tor controllers may register for CONN_BW
  2892. events. Changing this requires that **TestingTorNetwork** is set.
  2893. (Default: 0)
  2894. [[TestingEnableCellStatsEvent]] **TestingEnableCellStatsEvent** **0**|**1**::
  2895. If this option is set, then Tor controllers may register for CELL_STATS
  2896. events. Changing this requires that **TestingTorNetwork** is set.
  2897. (Default: 0)
  2898. [[TestingMinExitFlagThreshold]] **TestingMinExitFlagThreshold** __N__ **KBytes**|**MBytes**|**GBytes**|**TBytes**|**KBits**|**MBits**|**GBits**|**TBits**::
  2899. Sets a lower-bound for assigning an exit flag when running as an
  2900. authority on a testing network. Overrides the usual default lower bound
  2901. of 4 KB. (Default: 0)
  2902. [[TestingLinkCertLifetime]] **TestingLinkCertLifetime** __N__ **seconds**|**minutes**|**hours**|**days**|**weeks**|**months**::
  2903. Overrides the default lifetime for the certificates used to authenticate
  2904. our X509 link cert with our ed25519 signing key.
  2905. (Default: 2 days)
  2906. [[TestingAuthKeyLifetime]] **TestingAuthKeyLifetime** __N__ **seconds**|**minutes**|**hours**|**days**|**weeks**|**months**::
  2907. Overrides the default lifetime for a signing Ed25519 TLS Link authentication
  2908. key.
  2909. (Default: 2 days)
  2910. [[TestingLinkKeySlop]] **TestingLinkKeySlop** __N__ **seconds**|**minutes**|**hours** +
  2911. [[TestingAuthKeySlop]] **TestingAuthKeySlop** __N__ **seconds**|**minutes**|**hours** +
  2912. [[TestingSigningKeySlop]] **TestingSigningKeySlop** __N__ **seconds**|**minutes**|**hours**::
  2913. How early before the official expiration of a an Ed25519 signing key do
  2914. we replace it and issue a new key?
  2915. (Default: 3 hours for link and auth; 1 day for signing.)
  2916. NON-PERSISTENT OPTIONS
  2917. ----------------------
  2918. These options are not saved to the torrc file by the "SAVECONF" controller
  2919. command. Other options of this type are documented in control-spec.txt,
  2920. section 5.4. End-users should mostly ignore them.
  2921. [[UnderscorePorts]] **\_\_ControlPort**, **\_\_DirPort**, **\_\_DNSPort**, **\_\_ExtORPort**, **\_\_NATDPort**, **\_\_ORPort**, **\_\_SocksPort**, **\_\_TransPort**::
  2922. These underscore-prefixed options are variants of the regular Port
  2923. options. They behave the same, except they are not saved to the
  2924. torrc file by the controller's SAVECONF command.
  2925. SIGNALS
  2926. -------
  2927. Tor catches the following signals:
  2928. [[SIGTERM]] **SIGTERM**::
  2929. Tor will catch this, clean up and sync to disk if necessary, and exit.
  2930. [[SIGINT]] **SIGINT**::
  2931. Tor clients behave as with SIGTERM; but Tor servers will do a controlled
  2932. slow shutdown, closing listeners and waiting 30 seconds before exiting.
  2933. (The delay can be configured with the ShutdownWaitLength config option.)
  2934. [[SIGHUP]] **SIGHUP**::
  2935. The signal instructs Tor to reload its configuration (including closing and
  2936. reopening logs), and kill and restart its helper processes if applicable.
  2937. [[SIGUSR1]] **SIGUSR1**::
  2938. Log statistics about current connections, past connections, and throughput.
  2939. [[SIGUSR2]] **SIGUSR2**::
  2940. Switch all logs to loglevel debug. You can go back to the old loglevels by
  2941. sending a SIGHUP.
  2942. [[SIGCHLD]] **SIGCHLD**::
  2943. Tor receives this signal when one of its helper processes has exited, so it
  2944. can clean up.
  2945. [[SIGPIPE]] **SIGPIPE**::
  2946. Tor catches this signal and ignores it.
  2947. [[SIGXFSZ]] **SIGXFSZ**::
  2948. If this signal exists on your platform, Tor catches and ignores it.
  2949. FILES
  2950. -----
  2951. **@CONFDIR@/torrc**::
  2952. The configuration file, which contains "option value" pairs.
  2953. **$HOME/.torrc**::
  2954. Fallback location for torrc, if @CONFDIR@/torrc is not found.
  2955. **@LOCALSTATEDIR@/lib/tor/**::
  2956. The tor process stores keys and other data here.
  2957. __CacheDirectory__**/cached-certs**::
  2958. This file holds downloaded directory key certificates that are used to
  2959. verify authenticity of documents generated by Tor directory authorities.
  2960. __CacheDirectory__**/cached-consensus** and/or **cached-microdesc-consensus**::
  2961. The most recent consensus network status document we've downloaded.
  2962. __CacheDirectory__**/cached-descriptors** and **cached-descriptors.new**::
  2963. These files hold downloaded router statuses. Some routers may appear more
  2964. than once; if so, the most recently published descriptor is used. Lines
  2965. beginning with @-signs are annotations that contain more information about
  2966. a given router. The ".new" file is an append-only journal; when it gets
  2967. too large, all entries are merged into a new cached-descriptors file.
  2968. __CacheDirectory__**/cached-extrainfo** and **cached-extrainfo.new**::
  2969. As "cached-descriptors", but holds optionally-downloaded "extra-info"
  2970. documents. Relays use these documents to send inessential information
  2971. about statistics, bandwidth history, and network health to the
  2972. authorities. They aren't fetched by default; see the DownloadExtraInfo
  2973. option for more info.
  2974. __CacheDirectory__**/cached-microdescs** and **cached-microdescs.new**::
  2975. These files hold downloaded microdescriptors. Lines beginning with
  2976. @-signs are annotations that contain more information about a given
  2977. router. The ".new" file is an append-only journal; when it gets too
  2978. large, all entries are merged into a new cached-microdescs file.
  2979. __DataDirectory__**/state**::
  2980. A set of persistent key-value mappings. These are documented in
  2981. the file. These include:
  2982. - The current entry guards and their status.
  2983. - The current bandwidth accounting values.
  2984. - When the file was last written
  2985. - What version of Tor generated the state file
  2986. - A short history of bandwidth usage, as produced in the server
  2987. descriptors.
  2988. __DataDirectory__**/sr-state**::
  2989. Authority only. State file used to record information about the current
  2990. status of the shared-random-value voting state.
  2991. __CacheDirectory__**/diff-cache**::
  2992. Directory cache only. Holds older consensuses, and diffs from older
  2993. consensuses to the most recent consensus of each type, compressed
  2994. in various ways. Each file contains a set of key-value arguments
  2995. describing its contents, followed by a single NUL byte, followed by the
  2996. main file contents.
  2997. __DataDirectory__**/bw_accounting**::
  2998. Used to track bandwidth accounting values (when the current period starts
  2999. and ends; how much has been read and written so far this period). This file
  3000. is obsolete, and the data is now stored in the \'state' file instead.
  3001. __DataDirectory__**/control_auth_cookie**::
  3002. Used for cookie authentication with the controller. Location can be
  3003. overridden by the CookieAuthFile config option. Regenerated on startup. See
  3004. control-spec.txt in https://spec.torproject.org/[torspec] for details.
  3005. Only used when cookie authentication is enabled.
  3006. __DataDirectory__**/lock**::
  3007. This file is used to prevent two Tor instances from using same data
  3008. directory. If access to this file is locked, data directory is already
  3009. in use by Tor.
  3010. __DataDirectory__**/key-pinning-journal**::
  3011. Used by authorities. A line-based file that records mappings between
  3012. RSA1024 identity keys and Ed25519 identity keys. Authorities enforce
  3013. these mappings, so that once a relay has picked an Ed25519 key, stealing
  3014. or factoring the RSA1024 key will no longer let an attacker impersonate
  3015. the relay.
  3016. __KeyDirectory__**/authority_identity_key**::
  3017. A v3 directory authority's master identity key, used to authenticate its
  3018. signing key. Tor doesn't use this while it's running. The tor-gencert
  3019. program uses this. If you're running an authority, you should keep this
  3020. key offline, and not actually put it here.
  3021. __KeyDirectory__**/authority_certificate**::
  3022. A v3 directory authority's certificate, which authenticates the authority's
  3023. current vote- and consensus-signing key using its master identity key.
  3024. Only directory authorities use this file.
  3025. __KeyDirectory__**/authority_signing_key**::
  3026. A v3 directory authority's signing key, used to sign votes and consensuses.
  3027. Only directory authorities use this file. Corresponds to the
  3028. **authority_certificate** cert.
  3029. __KeyDirectory__**/legacy_certificate**::
  3030. As authority_certificate: used only when V3AuthUseLegacyKey is set.
  3031. See documentation for V3AuthUseLegacyKey.
  3032. __KeyDirectory__**/legacy_signing_key**::
  3033. As authority_signing_key: used only when V3AuthUseLegacyKey is set.
  3034. See documentation for V3AuthUseLegacyKey.
  3035. __KeyDirectory__**/secret_id_key**::
  3036. A relay's RSA1024 permanent identity key, including private and public
  3037. components. Used to sign router descriptors, and to sign other keys.
  3038. __KeyDirectory__**/ed25519_master_id_public_key**::
  3039. The public part of a relay's Ed25519 permanent identity key.
  3040. __KeyDirectory__**/ed25519_master_id_secret_key**::
  3041. The private part of a relay's Ed25519 permanent identity key. This key
  3042. is used to sign the medium-term ed25519 signing key. This file can be
  3043. kept offline, or kept encrypted. If so, Tor will not be able to generate
  3044. new signing keys itself; you'll need to use tor --keygen yourself to do
  3045. so.
  3046. __KeyDirectory__**/ed25519_signing_secret_key**::
  3047. The private and public components of a relay's medium-term Ed25519 signing
  3048. key. This key is authenticated by the Ed25519 master key, in turn
  3049. authenticates other keys (and router descriptors).
  3050. __KeyDirectory__**/ed25519_signing_cert**::
  3051. The certificate which authenticates "ed25519_signing_secret_key" as
  3052. having been signed by the Ed25519 master key.
  3053. __KeyDirectory__**/secret_onion_key** and **secret_onion_key.old**::
  3054. A relay's RSA1024 short-term onion key. Used to decrypt old-style ("TAP")
  3055. circuit extension requests. The ".old" file holds the previously
  3056. generated key, which the relay uses to handle any requests that were
  3057. made by clients that didn't have the new one.
  3058. __KeyDirectory__**/secret_onion_key_ntor** and **secret_onion_key_ntor.old**::
  3059. A relay's Curve25519 short-term onion key. Used to handle modern ("ntor")
  3060. circuit extension requests. The ".old" file holds the previously
  3061. generated key, which the relay uses to handle any requests that were
  3062. made by clients that didn't have the new one.
  3063. __DataDirectory__**/fingerprint**::
  3064. Only used by servers. Holds the fingerprint of the server's identity key.
  3065. __DataDirectory__**/hashed-fingerprint**::
  3066. Only used by bridges. Holds the hashed fingerprint of the bridge's
  3067. identity key. (That is, the hash of the hash of the identity key.)
  3068. __DataDirectory__**/approved-routers**::
  3069. Only used by authoritative directory servers. This file lists
  3070. the status of routers by their identity fingerprint.
  3071. Each line lists a status and a fingerprint separated by
  3072. whitespace. See your **fingerprint** file in the __DataDirectory__ for an
  3073. example line. If the status is **!reject** then descriptors from the
  3074. given identity (fingerprint) are rejected by this server. If it is
  3075. **!invalid** then descriptors are accepted but marked in the directory as
  3076. not valid, that is, not recommended.
  3077. __DataDirectory__**/v3-status-votes**::
  3078. Only for v3 authoritative directory servers. This file contains
  3079. status votes from all the authoritative directory servers.
  3080. __CacheDirectory__**/unverified-consensus**::
  3081. This file contains a network consensus document that has been downloaded,
  3082. but which we didn't have the right certificates to check yet.
  3083. __CacheDirectory__**/unverified-microdesc-consensus**::
  3084. This file contains a microdescriptor-flavored network consensus document
  3085. that has been downloaded, but which we didn't have the right certificates
  3086. to check yet.
  3087. __DataDirectory__**/unparseable-desc**::
  3088. Onion server descriptors that Tor was unable to parse are dumped to this
  3089. file. Only used for debugging.
  3090. __DataDirectory__**/router-stability**::
  3091. Only used by authoritative directory servers. Tracks measurements for
  3092. router mean-time-between-failures so that authorities have a good idea of
  3093. how to set their Stable flags.
  3094. __DataDirectory__**/stats/dirreq-stats**::
  3095. Only used by directory caches and authorities. This file is used to
  3096. collect directory request statistics.
  3097. __DataDirectory__**/stats/entry-stats**::
  3098. Only used by servers. This file is used to collect incoming connection
  3099. statistics by Tor entry nodes.
  3100. __DataDirectory__**/stats/bridge-stats**::
  3101. Only used by servers. This file is used to collect incoming connection
  3102. statistics by Tor bridges.
  3103. __DataDirectory__**/stats/exit-stats**::
  3104. Only used by servers. This file is used to collect outgoing connection
  3105. statistics by Tor exit routers.
  3106. __DataDirectory__**/stats/buffer-stats**::
  3107. Only used by servers. This file is used to collect buffer usage
  3108. history.
  3109. __DataDirectory__**/stats/conn-stats**::
  3110. Only used by servers. This file is used to collect approximate connection
  3111. history (number of active connections over time).
  3112. __DataDirectory__**/stats/hidserv-stats**::
  3113. Only used by servers. This file is used to collect approximate counts
  3114. of what fraction of the traffic is hidden service rendezvous traffic, and
  3115. approximately how many hidden services the relay has seen.
  3116. __DataDirectory__**/networkstatus-bridges**::
  3117. Only used by authoritative bridge directories. Contains information
  3118. about bridges that have self-reported themselves to the bridge
  3119. authority.
  3120. __DataDirectory__**/approved-routers**::
  3121. Authorities only. This file is used to configure which relays are
  3122. known to be valid, invalid, and so forth.
  3123. __HiddenServiceDirectory__**/hostname**::
  3124. The <base32-encoded-fingerprint>.onion domain name for this hidden service.
  3125. If the hidden service is restricted to authorized clients only, this file
  3126. also contains authorization data for all clients.
  3127. +
  3128. Note that clients will ignore any extra subdomains prepended to a hidden
  3129. service hostname. So if you have "xyz.onion" as your hostname, you
  3130. can tell clients to connect to "www.xyz.onion" or "irc.xyz.onion"
  3131. for virtual-hosting purposes.
  3132. __HiddenServiceDirectory__**/private_key**::
  3133. The private key for this hidden service.
  3134. __HiddenServiceDirectory__**/client_keys**::
  3135. Authorization data for a hidden service that is only accessible by
  3136. authorized clients.
  3137. __HiddenServiceDirectory__**/onion_service_non_anonymous**::
  3138. This file is present if a hidden service key was created in
  3139. **HiddenServiceNonAnonymousMode**.
  3140. SEE ALSO
  3141. --------
  3142. **torsocks**(1), **torify**(1) +
  3143. **https://www.torproject.org/**
  3144. **torspec: https://spec.torproject.org **
  3145. BUGS
  3146. ----
  3147. Plenty, probably. Tor is still in development. Please report them at https://trac.torproject.org/.
  3148. AUTHORS
  3149. -------
  3150. Roger Dingledine [arma at mit.edu], Nick Mathewson [nickm at alum.mit.edu].