tor.1.txt 174 KB

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