diff options
author | Roger Dingledine <arma@torproject.org> | 2005-10-17 03:23:05 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-10-17 03:23:05 +0000 |
commit | 38c6985fff67cf1145af63157ee2358ba22ddc9a (patch) | |
tree | fe4c375c03ba4efcb62f13e0fbc4c2050e6ef37f /src/config | |
parent | fd165329b84285b4cc139a139e00f189bdefa261 (diff) | |
download | tor-38c6985fff67cf1145af63157ee2358ba22ddc9a.tar.gz tor-38c6985fff67cf1145af63157ee2358ba22ddc9a.zip |
and update the sample torrc to reflect the *listenaddress notation
svn:r5261
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/torrc.sample.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/config/torrc.sample.in b/src/config/torrc.sample.in index 1c4d3d381d..8bbb2deb67 100644 --- a/src/config/torrc.sample.in +++ b/src/config/torrc.sample.in @@ -1,5 +1,5 @@ ## Configuration file for a typical Tor user -## Last updated 23 September 2005 for Tor 0.1.1.8-alpha. +## Last updated 16 October 2005 for Tor 0.1.1.9-alpha. ## (May or may not work for older or newer versions of Tor.) # ## See the man page, or http://tor.eff.org/tor-manual.html, for more @@ -18,12 +18,12 @@ ## Replace this with "SocksPort 0" if you plan to run Tor only as a ## server, and not make any local application connections yourself. SocksPort 9050 # what port to open for local application connections -SocksBindAddress 127.0.0.1 # accept connections only from localhost -#SocksBindAddress 192.168.0.1:9100 # listen on a chosen IP/port too +SocksListenAddress 127.0.0.1 # accept connections only from localhost +#SocksListenAddress 192.168.0.1:9100 # listen on a chosen IP/port too ## Entry policies to allow/deny SOCKS requests based on IP address. ## First entry that matches wins. If no SocksPolicy is set, we accept -## all (and only) requests from SocksBindAddress. +## all (and only) requests from SocksListenAddress. #SocksPolicy accept 192.168.0.1/16 #SocksPolicy reject * @@ -104,7 +104,7 @@ AllowUnverifiedNodes middle,rendezvous ## in ORPort (e.g. to advertise 443 but bind to 9090), uncomment ## the line below. You'll need to do ipchains or other port forwarding ## yourself to make this work. -#ORBindAddress 0.0.0.0:9090 +#ORListenAddress 0.0.0.0:9090 ## Uncomment this to mirror the directory for others (please do) #DirPort 9030 # what port to advertise for directory connections @@ -112,7 +112,7 @@ AllowUnverifiedNodes middle,rendezvous ## in DirPort (e.g. to advertise 80 but bind 9091), uncomment the line ## below. You'll need to do ipchains or other port forwarding yourself ## to make this work. -#DirBindAddress 0.0.0.0:9091 +#DirListenAddress 0.0.0.0:9091 ## Uncomment this if you run more than one Tor server, and add the ## nickname of each Tor server you control, even if they're on different |