Thomas Sjögren commited on 2005-06-11 14:24:20
Zeige 1 geänderte Dateien mit 28 Einfügungen und 10 Löschungen.
... | ... |
@@ -4,7 +4,7 @@ Content-type: text/html |
4 | 4 |
<HTML><HEAD><TITLE>Man page of TOR</TITLE> |
5 | 5 |
</HEAD><BODY> |
6 | 6 |
<H1>TOR</H1> |
7 |
-Section: User Commands (1)<BR>Updated: May 2005<BR><A HREF="#index">Index</A> |
|
7 |
+Section: User Commands (1)<BR>Updated: June 2005<BR><A HREF="#index">Index</A> |
|
8 | 8 |
<A HREF="../">Return to Main Contents</A><HR> |
9 | 9 |
|
10 | 10 |
<A NAME="lbAB"> </A> |
... | ... |
@@ -90,14 +90,20 @@ directory servers: moria1, moria2, and tor26. |
90 | 90 |
<DT><B>Group </B><I>GID</I><DD> |
91 | 91 |
On startup, setgid to this user. |
92 | 92 |
<DT><B>HttpProxy</B> <I>host</I>[:<I>port</I>]<DD> |
93 |
-If set, Tor will make all its directory requests through this host:port, |
|
93 |
+Tor will make all its directory requests through this host:port |
|
94 |
+(or host:80 if port is not specified), |
|
94 | 95 |
rather than connecting directly to any directory servers. |
96 |
+<DT><B>HttpProxyAuthenticator</B> <I>username:password</I><DD> |
|
97 |
+If defined, Tor will use this username:password for Basic Http proxy |
|
98 |
+authentication, as in RFC 2617. This is currently the only form of |
|
99 |
+Http proxy authentication that Tor supports; feel free to submit a |
|
100 |
+patch if you want it to support others. |
|
95 | 101 |
<DT><B>HttpsProxy</B> <I>host</I>[:<I>port</I>]<DD> |
96 |
-If set, Tor will make all its OR (SSL) connections through this host:port, |
|
97 |
-via HTTP CONNECT, rather than connecting directly to servers. |
|
98 |
-You may want to set <B>FascistFirewall</B> to restrict the set of ports you |
|
99 |
-might try to connect to, if your Https proxy only allows connecting to certain |
|
100 |
-ports. |
|
102 |
+Tor will make all its OR (SSL) connections through this host:port |
|
103 |
+(or host:443 if port is not specified), via HTTP CONNECT rather than |
|
104 |
+connecting directly to servers. You may want to set <B>FascistFirewall</B> |
|
105 |
+to restrict the set of ports you might try to connect to, if your Https |
|
106 |
+proxy only allows connecting to certain ports. |
|
101 | 107 |
<DT><B>HttpsProxyAuthenticator</B> <I>username:password</I><DD> |
102 | 108 |
If defined, Tor will use this username:password for Basic Https proxy |
103 | 109 |
authentication, as in RFC 2617. This is currently the only form of |
... | ... |
@@ -105,7 +111,9 @@ Https proxy authentication that Tor supports; feel free to submit a |
105 | 111 |
patch if you want it to support others. |
106 | 112 |
<DT><B>KeepalivePeriod </B><I>NUM</I><DD> |
107 | 113 |
To keep firewalls from expiring connections, send a padding keepalive |
108 |
-cell on open connections every NUM seconds. (Default: 5 minutes) |
|
114 |
+cell every NUM seconds on open connections that are in use. If the |
|
115 |
+connection has no open circuits, it will instead be closed after NUM |
|
116 |
+seconds of idleness. (Default: 5 minutes) |
|
109 | 117 |
<DT><B>Log </B><I>minSeverity</I>[-<I>maxSeverity</I>] <B>stderr</B>|<B>stdout</B>|<B>syslog</B><DD> |
110 | 118 |
Send all messages between <I>minSeverity</I> and <I>maxSeverity</I> to |
111 | 119 |
the standard output stream, the standard error stream, or to the system |
... | ... |
@@ -157,6 +165,9 @@ If set to 1, Tor will under no circumstances run as a server. The default |
157 | 165 |
is to run as a client unless ORPort is configured. (Usually, |
158 | 166 |
you don't need to set this; Tor is pretty smart at figuring out whether |
159 | 167 |
you are reliable and high-bandwidth enough to be a useful server.) |
168 |
+<P> |
|
169 |
+This option will likely be deprecated in the future; see the NoPublish |
|
170 |
+option below. (Default: 0) |
|
160 | 171 |
<DT><B>EntryNodes </B><I>nickname</I>,<I>nickname</I>,<I>...</I><DD> |
161 | 172 |
A list of preferred nodes to use for the first hop in the circuit, if possible. |
162 | 173 |
<DT><B>ExitNodes </B><I>nickname</I>,<I>nickname</I>,<I>...</I><DD> |
... | ... |
@@ -250,11 +261,12 @@ unset, and Tor will guess your IP. |
250 | 261 |
Administrative contact information for server. |
251 | 262 |
<DT><B>ExitPolicy </B><I>policy</I>,<I>policy</I>,<I>...</I><DD> |
252 | 263 |
Set an exit policy for this server. Each policy is of the form |
253 |
-"<B>accept</B>|<B>reject</B> <I>ADDR</I>[<B>/</B><I>MASK</I>]<B>:</B><I>PORT</I>". |
|
264 |
+"<B>accept</B>|<B>reject</B> <I>ADDR</I>[<B>/</B><I>MASK</I>]<B>[:</B><I>PORT</I>]". |
|
254 | 265 |
If <B>/</B><I>MASK</I> is omitted then this policy just applies to the host |
255 | 266 |
given. Instead of giving a host or network you can also use "<B>*</B>" to |
256 | 267 |
denote the universe (0.0.0.0/0). <I>PORT</I> can be a single port number, |
257 | 268 |
an interval of ports "<I>FROM_PORT</I><B>-</B><I>TO_PORT</I>", or "<B>*</B>". |
269 |
+If PORT is omitted, that means "<B>*</B>". |
|
258 | 270 |
<P> |
259 | 271 |
For example, "reject 127.0.0.1:*,reject 192.168.1.0/24:*,accept *:*" would |
260 | 272 |
reject any traffic destined for localhost and any 192.168.1.* address, but |
... | ... |
@@ -301,6 +313,12 @@ will not use them in the same circuit. (Each server only needs to list the |
301 | 313 |
other servers in its family; it doesn't need to list itself, but it won't hurt.) |
302 | 314 |
<DT><B>Nickname </B><I>name</I><DD> |
303 | 315 |
Set the server's nickname to 'name'. |
316 |
+<DT><B>NoPublish </B><B>0</B>|<B>1</B><DD> |
|
317 |
+If you set NoPublish 1, Tor will act as a server if you have an ORPort |
|
318 |
+defined, but it will not publish its descriptor to the dirservers. This |
|
319 |
+option is useful if you're testing out your server, or if you're using |
|
320 |
+alternate dirservers (e.g. for other Tor networks such as Blossom). |
|
321 |
+(Default: 0) |
|
304 | 322 |
<DT><B>NumCPUs </B><I>num</I><DD> |
305 | 323 |
How many processes to use at once for decrypting onionskins. (Default: 1) |
306 | 324 |
<DT><B>ORPort </B><I>PORT</I><DD> |
... | ... |
@@ -516,6 +534,6 @@ Roger Dingledine <<A HREF="mailto:arma@mit.edu">arma@mit.edu</A>>, Nick Ma |
516 | 534 |
This document was created by |
517 | 535 |
<A HREF="../">man2html</A>, |
518 | 536 |
using the manual pages.<BR> |
519 |
-Time: 14:06:07 GMT, May 23, 2005 |
|
537 |
+Time: 12:23:16 GMT, June 11, 2005 |
|
520 | 538 |
</BODY> |
521 | 539 |
</HTML> |
522 | 540 |