diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-05-31 19:13:12 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-05-31 19:13:12 +0000 |
commit | b1cd5892cb438754a878e473bf63bc3a40f8f171 (patch) | |
tree | bdc6878cda1fbe62d51da4e7dc6af62abcaf5141 | |
parent | 534c55f531ef021ec4505bfd742cd0f1289d1f34 (diff) | |
download | tor-b1cd5892cb438754a878e473bf63bc3a40f8f171.tar tor-b1cd5892cb438754a878e473bf63bc3a40f8f171.tar.gz |
r13115@catbus: nickm | 2007-05-31 15:12:43 -0400
Document DNSPort, DNSListenAddress, AutomapHostsOnResolve, AutomapHostsSuffixes, and DownloadExtraInfo in the manpage.
svn:r10426
-rw-r--r-- | doc/tor.1.in | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/doc/tor.1.in b/doc/tor.1.in index 93dd90f98..a8664f9dd 100644 --- a/doc/tor.1.in +++ b/doc/tor.1.in @@ -602,6 +602,42 @@ Bind to this address to listen for NATD connections. (Default: 127.0.0.1). .LP .TP +\fBAutomapHostsOnResolve\fP \fR\fB0\fR|\fB1\fR\fP +When this option is enabled, and we get a request to resolve an +address that ends with one of the suffixes in +\fBAutomapHostsSuffixes\fP, we map an unused virtual address to that +address, and return the new virtual address. This is handy for making +.onion addresses work with applications that resolve an address and +then connect to it. +(Default: 0). +.LP +.TP +\fBAutomapHostsSuffixes\fP \fR\fISUFFIX\fR,\fISUFFIX\fR,...\fP +A comma-separated list of suffixes to use with \fBAutomapHostsOnResolve\fP. +The "." suffix is equivalent to "all addresses." +(Default: .exit,.onion). +.LP +.TP +\fBDNSPort\fP \fR\fIPORT\fP +If non-zero, Tor listens for UDP DNS requests on this port and resolves them +anonymously. +(Default: 0). +.LP +.TP +\fBDNSListenAddress\fP \fR\fIIP\fR[:\fIPORT\fR]\fP +Bind to this address to listen for DNS connections. +(Default: 127.0.0.1). +.LP +.TP +\fBDownloadExtraInfo\fP \fR\fB0\fR|\fB1\fR\fP +If true, Tor downloads and caches "extra-info" documents. These +documents contain information about servers other than the information +in their regular router descriptors. Tor does not use this information for +anything itself; to save bandwidth, leave this option turned off. +(Default: 0). + +.LP +.TP .SH SERVER OPTIONS .PP The following options are useful only for servers (that is, if \fBORPort\fP is non-zero): |