tor.1.in 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. .TH TOR 1 "November 2003" "TOR"
  2. .SH NAME
  3. tor \- The second-generation onion router
  4. .SH SYNOPSIS
  5. .B tor
  6. [\fIOPTION value\fR]...
  7. .SH DESCRIPTION
  8. .I tor
  9. is a connection-oriented anonymizing communication
  10. service. Users choose a source-routed path through a set of nodes, and
  11. negotiate a "virtual circuit" through the network, in which each node
  12. knows its predecessor and successor, but no others. Traffic flowing down
  13. the circuit is unwrapped by a symmetric key at each node, which reveals
  14. the downstream node.
  15. .PP
  16. Basically \fItor\fR provides a distributed network of servers ("onion
  17. routers"). Users bounce their tcp streams -- web traffic, ftp, ssh, etc --
  18. around the routers, and recipients, observers, and even the routers
  19. themselves have difficulty tracking the source of the stream.
  20. .SH OPTIONS
  21. \fB-h, -help\fP
  22. Display a short help message and exit.
  23. .TP
  24. \fB-f \fR\fIFILE\fP
  25. FILE contains further "option value" pairs. (Default: @CONFDIR@/torrc)
  26. .TP
  27. Other options can be specified either on the commandline (\fI--option value\fR), or in the configuration file (\fIoption value\fR).
  28. .TP
  29. \fBloglevel debug|info|warn|err\fP
  30. Set the verboseness level of the primary log. (Default: warn)
  31. .TP
  32. \fBlogfile \fR\fIFILE\fP
  33. Rather than logging to stdout, log to FILE.
  34. .TP
  35. \fBbandwidthrate \fR\fINUM\fP
  36. A token bucket limits the average incoming bandwidth on this node to NUM bytes per second. (Default: 800000)
  37. .TP
  38. \fBbandwidthburst \fR\fINUM\fP
  39. Limit the maximum token bucket size (also known as the burst) to NUM bytes. (Default: 10000000)
  40. .TP
  41. \fBdebuglogfile \fR\fIFILE\fP
  42. In addition to other logging, we will log to FILE at log-level debug.
  43. .TP
  44. \fBgroup \fR\fIGID\fP
  45. On startup, setgid to this user.
  46. .TP
  47. \fBkeepaliveperiod \fR\fINUM\fP
  48. To keep firewalls from expiring connections, send a padding keepalive cell on open connections every NUM seconds. (Default: 300)
  49. .TP
  50. \fBpidfile \fR\fIFILE\fP
  51. On startup, write our PID to FILE. On clean shutdown, remove FILE.
  52. .TP
  53. \fBrouterfile \fR\fIFILE\fP
  54. FILE contains a list of directory servers, to bootstrap into the network. (Default: @CONFDIR@/dirservers)
  55. .TP
  56. \fBrunasdaemon \fR\fI0|1\fP
  57. If 1, Tor forks and daemonizes to the background. (Default: 0)
  58. .TP
  59. \fBuser \fR\fIUID\fP
  60. On startup, setuid to this user.
  61. .SH CLIENT OPTIONS
  62. .PP
  63. The following options are useful only for clients (that is, if \fBsocksport\fP is non-zero):
  64. .TP
  65. \fBentrynodes \fR\fInickname,nickname,...\fP
  66. A list of preferred nodes to use for the first hop in the circuit, if possible.
  67. .TP
  68. \fBexitnodes \fR\fInickname,nickname,...\fP
  69. A list of preferred nodes to use for the last hop in the circuit, if possible.
  70. .TP
  71. \fBnewcircuitperiod \fR\fINUM\fP
  72. Every NUM seconds consider whether to build a new circuit. (Default: 60)
  73. .TP
  74. \fBpathlencoinweight \fR\fI0.0-1.0\fP
  75. Paths are 3 hops plus a geometric distribution centered around this coinweight. Must be >=0.0 and <1.0. (Default: 0.3)
  76. .TP
  77. \fBsocksport \fR\fIPORT\fP
  78. Bind to this port to listen for connections from socks-speaking applications.
  79. .TP
  80. \fBsocksbindaddress \fR\fIIP\fP
  81. Bind to this address to listen for connections from socks-speaking applications. (Default: 127.0.0.1)
  82. .SH SERVER OPTIONS
  83. .PP
  84. The following options are useful only for servers (that is, if \fBorport\fP is non-zero):
  85. .TP
  86. \fBaddress address\fP
  87. The fqdn of this server (e.g. moria.mit.edu).
  88. .TP
  89. \fBdatadirectory \fR\fIDIR\fP
  90. Store working data in DIR (Default: @LOCALSTATEDIR@/lib/tor)
  91. .TP
  92. \fBexitpolicy \fR\fIpolicy,policy,...\fP
  93. Set an exit policy for this server. Each policy is of the form "reject ADDR/MASK:PORT". For example,
  94. "reject 127.0.0.1:*,reject 192.168.1.0/24:*,accept *:*" would reject any traffic destined for
  95. localhost and any 192.168.1.* address, but accept anything else.
  96. .TP
  97. \fBmaxonionspending \fR\fINUM\fP
  98. If you have more than this number of onionskins queued for decrypt, reject new ones. (Default: 100)
  99. .TP
  100. \fBnickname \fR\fIname\fP
  101. Set the server's nickname to 'name'.
  102. .TP
  103. \fBnumcpus \fR\fInum\fP
  104. How many processes to use at once for decrypting onionskins. (Default: 1)
  105. .TP
  106. \fBorport \fR\fIPORT\fP
  107. Bind to this port to listen for connections from Tor clients and servers.
  108. .TP
  109. \fBorbindaddress \fR\fIIP\fP
  110. Bind to this address to listen for connections from Tor clients and servers. (Default: 0.0.0.0)
  111. .SH DIRECTORY SERVER OPTIONS
  112. .PP
  113. The following options are useful only for directory servers (that is, if \fBdirport\fP is non-zero):
  114. .TP
  115. \fBdirport \fR\fIPORT\fP
  116. Bind the directory service to this port.
  117. .TP
  118. \fBdirbindaddress \fR\fIIP\fP
  119. Bind the directory service to this address. (Default: 0.0.0.0)
  120. .TP
  121. \fBrecommendedversions \fR\fISTRING\fP
  122. STRING is a command-separated list of Tor versions currently believed to be safe. The list is included in each directory, and nodes which pull down the directory learn whether they need to upgrade.
  123. .SH FILES
  124. .TP
  125. .I @CONFDIR@/torrc
  126. The configuration file, which contains "option value" pairs.
  127. .TP
  128. .I @CONFDIR@/dirservers
  129. A list of directory servers, to bootstrap into the network.
  130. .TP
  131. .I @LOCALSTATEDIR@/lib/tor/
  132. The tor server stores keys/etc here.
  133. .SH SEE ALSO
  134. .BR privoxy (1),
  135. .BR tsocks (1)
  136. .BR http://freehaven.net/tor/
  137. .SH BUGS
  138. Plenty, probably. It's still in alpha. Please report them.
  139. .SH AUTHORS
  140. Roger Dingledine <arma@mit.edu>.