diff options
author | Nick Mathewson <nickm@torproject.org> | 2010-11-15 14:07:00 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2010-11-15 14:07:00 -0500 |
commit | 433a98131a6b7eb1e59b7ef1e9e9ece2d1ef54ba (patch) | |
tree | 8c898820e74e0536ed9faa28bc5cc7486a00db11 /doc | |
parent | dbba84c917279c8c58b1bfdac37fbcdfd84b7bb7 (diff) | |
parent | 6bde512edce7e7bbf2b4246212d05dbbe8cf8da2 (diff) | |
download | tor-433a98131a6b7eb1e59b7ef1e9e9ece2d1ef54ba.tar.gz tor-433a98131a6b7eb1e59b7ef1e9e9ece2d1ef54ba.zip |
Merge remote branch 'sebastian/manpagefixups' into maint-0.2.2
Diffstat (limited to 'doc')
-rw-r--r-- | doc/spec/address-spec.txt | 2 | ||||
-rw-r--r-- | doc/tor.1.txt | 19 |
2 files changed, 16 insertions, 5 deletions
diff --git a/doc/spec/address-spec.txt b/doc/spec/address-spec.txt index 2e1aff2b8a..ce6d2b65e7 100644 --- a/doc/spec/address-spec.txt +++ b/doc/spec/address-spec.txt @@ -12,7 +12,7 @@ These hostnames can be passed to Tor as the address part of a SOCKS4a or SOCKS5 request. If the application is connected to Tor using an IP-only - method (such as SOCKS4, TransPort, or NatdPort), these hostnames can be + method (such as SOCKS4, TransPort, or NATDPort), these hostnames can be substituted for certain IP addresses using the MapAddress configuration option or the MAPADDRESS control command. diff --git a/doc/tor.1.txt b/doc/tor.1.txt index df2b17ed08..f7cccb5215 100644 --- a/doc/tor.1.txt +++ b/doc/tor.1.txt @@ -89,14 +89,14 @@ Other options can be specified either on the command-line (--option without impacting network performance. **RelayBandwidthRate** __N__ **bytes**|**KB**|**MB**|**GB**:: - If defined, a separate token bucket limits the average incoming bandwidth + If not 0, a separate token bucket limits the average incoming bandwidth usage for \_relayed traffic_ on this node to the specified number of bytes per second, and the average outgoing bandwidth usage to that same value. Relayed traffic currently is calculated to include answers to directory requests, but that may change in future versions. (Default: 0) **RelayBandwidthBurst** __N__ **bytes**|**KB**|**MB**|**GB**:: - Limit the maximum token bucket size (also known as the burst) for + If not 0, limit the maximum token bucket size (also known as the burst) for \_relayed traffic_ to the given number of bytes in each direction. (Default: 0) @@ -110,7 +110,7 @@ Other options can be specified either on the command-line (--option You should never need to change this value, since a network-wide value is published in the consensus and your relay will use that value. (Default: 0) -**ConLimit** __NUM__:: +**ConnLimit** __NUM__:: The minimum number of file descriptors that must be available to the Tor process before it will start. Tor will ask the OS for as many file descriptors as the OS will allow (you can find this by "ulimit -H -n"). @@ -670,7 +670,7 @@ The following options are useful only for clients (that is, if **AllowDotExit** **0**|**1**:: If enabled, we convert "www.google.com.foo.exit" addresses on the - SocksPort/TransPort/NatdPort into "www.google.com" addresses that exit from + SocksPort/TransPort/NATDPort into "www.google.com" addresses that exit from the node "foo". Disabled by default since attacking websites and exit relays can use it to manipulate your path selection. (Default: 0) @@ -751,6 +751,11 @@ The following options are useful only for clients (that is, if Like WarnPlaintextPorts, but instead of warning about risky port uses, Tor will instead refuse to make the connection. (Default: None). +**AllowSingleHopCircuits** **0**|**1**:: + When this option is set, the attached Tor controller Tor can use relays + that have the **AllowSingleHopExits** option turned on to build + one-hop Tor connections. + SERVER OPTIONS -------------- @@ -1189,6 +1194,11 @@ DIRECTORY AUTHORITY SERVER OPTIONS server's preferred number, but the consensus of all preferences. Must be at least 2. (Default: 3.) +**V3BandwidthsFile** __FILENAME__:: + V3 authoritative directories only. Configures the location of the + bandiwdth-authority generated file storing information on relays' measured + bandwidth capacities. (Default: unset.) + HIDDEN SERVICE OPTIONS ---------------------- @@ -1257,6 +1267,7 @@ The following options are used for running a testing Tor network. V3AuthVotingInterval 5 minutes V3AuthVoteDelay 20 seconds V3AuthDistDelay 20 seconds + MinUptimeHidServDirectoryV2 0 seconds TestingV3AuthInitialVotingInterval 5 minutes TestingV3AuthInitialVoteDelay 20 seconds TestingV3AuthInitialDistDelay 20 seconds |