other versions
- wheezy 1.2-3
- wheezy-backports 2.0.0-1~bpo70+1
- jessie 2.0.0-3
- jessie-backports 2.2.0-1~bpo8+1
- testing 2.2.0-1
- unstable 2.2.0-1
TORSOCKS.CONF(5) | TORSOCKS.CONF(5) |
NAME¶
torsocks.conf — Configuration file for torsocks(8)SUMMARY¶
By default, torsocks will assume that it should connect to the Tor SOCKS proxy running at 127.0.0.1 on port 9050. This is the default address and port for Tor's socks server on most installations. If you are running a normal Tor installation and have no special requirements, then you should not need to create, edit or invoke a configuration file when using torsocks.CONFIGURATION¶
SYNTAX¶
The basic structure of all lines in the configuration file is:<directive> <parameters>
DIRECTIVES¶
The following directives are used in the torsocks configuration file:- TorAddress ip_addr
- The IP address of the Tor SOCKS server (e.g "server =
10.1.4.253"). Only one server may be specified. Currently, torsocks
does NOT support hostname. (default: 127.0.0.1)
- TorPort port
- The port on which the Tor SOCKS server receives requests.
(default: 9050)
- OnionAddrRange subnet/mask
- Tor hidden sites do not have real IP addresses. This
specifies what range of IP addresses will be handed to the application as
"cookies" for .onion names. Of course, you should pick a block
of addresses which you aren't going to ever need to actually connect to.
This is similar to the MapAddress feature of the main tor daemon.
(default: 127.42.42.0/24)
- SOCKS5Username username
- Username to use for SOCKS5 authentication method that makes
the connections to Tor to use a different circuit from other existing
streams. If set, the SOCKS5Password must be specified also. (Default:
none).
- SOCKS5Password password
- Password to use for SOCKS5 authentication method that makes
the connections to Tor to use a different circuit from other existing
streams. If set, the SOCKS5Username must be specified also. (Default:
none).
- AllowInbound 0|1
- Allow inbound connections meaning that listen() and
accept()/accept4() will be allowed for non localhost address so the
applicaton can handle incoming connection. Note that Unix socket are
allowed. (Default: 0)
EXAMPLE¶
$ export TORSOCKS_CONF_FILE=$PWD/torsocks.conf
$ torsocks ssh account@sshserver.com
SEE ALSO¶
torsocks(1), torsocks(8),AUTHOR¶
David Goulet <dgoulet@ev0ke.net>August 24th, 2013 |