diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-01-27 08:05:29 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-01-27 08:05:29 -0500 |
commit | 81c78ec7556b4071b4eb1f60c4867d6ba8cf4685 (patch) | |
tree | 721d4456a74b7fb07b5e88e7bb22ac0c0eeb3137 /src/config | |
parent | ad382049ed9b3408992a7a7ee4dfe2ecdb1d5897 (diff) | |
download | tor-81c78ec7556b4071b4eb1f60c4867d6ba8cf4685.tar.gz tor-81c78ec7556b4071b4eb1f60c4867d6ba8cf4685.zip |
Outbindbindaddress variants for Exit and OR.
Allow separation of exit and relay traffic to different source IP
addresses (Ticket #17975). Written by Michael Sonntag.
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/torrc.sample.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/config/torrc.sample.in b/src/config/torrc.sample.in index 5328206da9..37777443ac 100644 --- a/src/config/torrc.sample.in +++ b/src/config/torrc.sample.in @@ -95,7 +95,12 @@ ## If you have multiple network interfaces, you can specify one for ## outgoing traffic to use. -# OutboundBindAddress 10.0.0.5 +## OutboundBindAddressExit will be used for all exit traffic, while +## OutboundBindAddressOR will be used for all other connections. +## If you do not wish to differentiate, use OutboundBindAddress to +## specify the same address for both in a single line. +#OutboundBindAddressExit 10.0.0.4 +#OutboundBindAddressOR 10.0.0.5 ## A handle for your relay, so people don't have to refer to it by key. ## Nicknames must be between 1 and 19 characters inclusive, and must |