diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-11-13 10:48:15 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-01-06 14:31:20 -0500 |
commit | 35efce1f3f517871aaa19d60976a9abb3a67bede (patch) | |
tree | 13560f7d67e4df1e4011f6f08ff42e371ed7f0a9 /doc | |
parent | 5c813f6ca1d6e385cfad5219108f8ac00677cf35 (diff) | |
download | tor-35efce1f3f517871aaa19d60976a9abb3a67bede.tar.gz tor-35efce1f3f517871aaa19d60976a9abb3a67bede.zip |
Add an ExitRelay option to override ExitPolicy
If we're not a relay, we ignore it.
If it's set to 1, we obey ExitPolicy.
If it's set to 0, we force ExitPolicy to 'reject *:*'
And if it's set to auto, then we warn the user if they're running an
exit, and tell them how they can stop running an exit if they didn't
mean to do that.
Fixes ticket 10067
Diffstat (limited to 'doc')
-rw-r--r-- | doc/tor.1.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/tor.1.txt b/doc/tor.1.txt index eb406e7cb7..1aa0314158 100644 --- a/doc/tor.1.txt +++ b/doc/tor.1.txt @@ -1479,6 +1479,19 @@ is non-zero): that it's an email address and/or generate a new address for this purpose. +[[ExitRelay]] **ExitRelay** **0**|**1**|**auto**:: + Tells Tor whether to run as an exit relay. If Tor is running as a + non-bridge server, and ExitRelay is set to 1, then Tor allows traffic to + exit according to the ExitPolicy option (or the default ExitPolicy if + none is specified). + + + If ExitRelay is set to 0, no traffic is allowed to + exit, and the ExitPolicy option is ignored. + + + + If ExitRelay is set to "auto", then Tor behaves as if it were set to 1, but + warns the user if this would cause traffic to exit. In a future version, + the default value will be 0. (Default: auto) + [[ExitPolicy]] **ExitPolicy** __policy__,__policy__,__...__:: Set an exit policy for this server. Each policy is of the form "**accept**|**reject** __ADDR__[/__MASK__][:__PORT__]". If /__MASK__ is |