diff options
author | Alexander Færøy <ahf@torproject.org> | 2019-07-02 19:03:39 +0200 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2020-10-06 09:30:10 -0400 |
commit | db0aaf428ebb00b37b451db1d5eecb2fd5689b79 (patch) | |
tree | 716ba4d527d1ea5cff38e040361dcb6fdeb44040 /doc | |
parent | 25bffccd718220bd5b378d1517d09669d6685db1 (diff) | |
download | tor-db0aaf428ebb00b37b451db1d5eecb2fd5689b79.tar.gz tor-db0aaf428ebb00b37b451db1d5eecb2fd5689b79.zip |
Add `OutboundBindAddressPT` to torrc.
This patch adds a new option to torrc: `OutboundBindAddressPT`. This
option works in the same way as `OutboundBindAddressOR` and
`OutboundBindAddressExit` in that it allows the user to specify which
outbound IP address the user wants the PT to make its connections from.
There is one difference though in that OutboundBindAddressPT will only
be a suggestion for the PT to use since Tor cannot enforce whether or
not the PT actually uses this option for anything.
See: https://bugs.torproject.org/5304
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/tor.1.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/man/tor.1.txt b/doc/man/tor.1.txt index 4b37548b07..cd53d5ea26 100644 --- a/doc/man/tor.1.txt +++ b/doc/man/tor.1.txt @@ -797,6 +797,17 @@ forward slash (/) in the configuration file and on the command line. field, Tor will use it for separate rate limiting for each connection from a non-relay. (Default: 0) +[[OutboundBindAddressPT]] **OutboundBindAddressPT** __IP__:: + Request that pluggable transports makes all outbound connections + originate from the IP address specified. Because outgoing connections + are handled by the pluggable transport itself, it is not possible for + Tor to enforce whether the pluggable transport honors this option. This + option overrides **OutboundBindAddress** for the same IP version. This + option may be used twice, once with an IPv4 address and once with an + IPv6 address. IPv6 addresses should be wrapped in square brackets. This + setting will be ignored for connections to the loopback addresses + (127.0.0.0/8 and ::1). + [[PidFile]] **PidFile** __FILE__:: On startup, write our PID to FILE. On clean shutdown, remove FILE. Can not be changed while tor is running. |