Replace old content with a pointer to the new Tor Relay Guide.
... | ... |
@@ -10,118 +10,7 @@ |
10 | 10 |
<a href="<page docs/tor-doc-relay>">Configure Tor Relay</a> |
11 | 11 |
</div> |
12 | 12 |
<div id="maincol"> |
13 |
- |
|
14 |
- <h1>Configuring a Tor relay</h1> |
|
15 |
- |
|
16 |
- <hr> |
|
17 |
- |
|
18 |
- <p> |
|
19 |
- The Tor network relies on volunteers to donate bandwidth. The more |
|
20 |
- people who run relays, the faster the Tor network will be. If you have |
|
21 |
- at least 2 megabits/s for both upload and download, please help out |
|
22 |
- Tor by configuring your Tor to be a relay too. |
|
23 |
- </p> |
|
24 |
- |
|
25 |
- <p>You can run a Tor relay on pretty much any operating system. Tor relays |
|
26 |
- work best on current distributions of Linux, FreeBSD, NetBSD, and |
|
27 |
- Windows Server. |
|
28 |
- </p> |
|
29 |
- |
|
30 |
- <p> |
|
31 |
- The best approach for most users is to <a href="<page |
|
32 |
- docs/tor-relay-debian>">run your relay on Debian or Ubuntu</a> using |
|
33 |
- the system Tor package — the deb takes care of running Tor as a |
|
34 |
- separate user, making sure it has enough file descriptors available, |
|
35 |
- starting it at boot, and so on. Tor relays also run nicely on other |
|
36 |
- Linux flavors, and on FreeBSD and NetBSD for those who are comfortable |
|
37 |
- with those operating systems. |
|
38 |
- </p> |
|
39 |
- |
|
40 |
- <hr> |
|
41 |
- <a id="torrc"></a> |
|
42 |
- <h2><a class="anchor" href="#torrc">Configure Tor by editing the torrc file</a></h2> |
|
43 |
- <br /> |
|
44 |
- |
|
45 |
- <p> |
|
46 |
- Tor's |
|
47 |
- configuration file is named 'torrc'.</p> |
|
48 |
- <p>Locate the file on your system, open it with a text editor and add the |
|
49 |
- following lines:</p> |
|
50 |
- |
|
51 |
- <pre> |
|
52 |
- ORPort 443 |
|
53 |
- Exitpolicy reject *:* |
|
54 |
- Nickname ididntedittheconfig |
|
55 |
- ContactInfo human@... |
|
56 |
- </pre> |
|
57 |
- |
|
58 |
-# TODO: Update link to PT setup docs |
|
59 |
- <p>If you want to be a bridge, read about the BridgeRelay and |
|
60 |
- ServerTransportPlugin values <a |
|
61 |
- href="<page docs/pluggable-transports>">on |
|
62 |
- this page</a>.</p> |
|
63 |
- |
|
64 |
- <p>Tor will use all your bandwidth if you don't set limits for it. Some |
|
65 |
- options are described in <a href="<page docs/faq>#LimitTotalBandwidth">these</a> |
|
66 |
- <a href="<page docs/faq>#BandwidthShaping">FAQ entries</a>.</p> |
|
67 |
- |
|
68 |
- <p>See the <a href="https://gitweb.torproject.org/tor.git/plain/src/config/torrc.sample.in">sample |
|
69 |
- torrc file</a> and the <a |
|
70 |
- href="<page docs/tor-manual>">man |
|
71 |
- page</a> for other Tor options you may want to set.</p> |
|
72 |
- |
|
73 |
- <hr> |
|
74 |
- <a id="check"></a> |
|
75 |
- <h2><a class="anchor" href="#check">Make sure your relay is reachable</a></h2> |
|
76 |
- <br> |
|
77 |
- |
|
78 |
- <p>If you are using a firewall, open a hole in your firewall |
|
79 |
- so incoming connections can reach the ports you configured |
|
80 |
- (ORPort, plus DirPort if you enabled it). If you have a |
|
81 |
- hardware firewall (Linksys box, cable modem, etc) you might find <a |
|
82 |
- href="http://portforward.com/">portforward.com</a> useful. Also, make sure you |
|
83 |
- allow all <em>outgoing</em> connections too, so your relay can reach the |
|
84 |
- other Tor relays. |
|
85 |
- </p> |
|
86 |
- |
|
87 |
- <p>Restart your relay. If it <a |
|
88 |
- href="<page docs/faq>#Logs">logs |
|
89 |
- any warnings</a>, address them. |
|
90 |
- </p> |
|
91 |
- |
|
92 |
- <p>As soon as your relay manages to connect to the network, it will |
|
93 |
- try to determine whether the ports you configured are reachable from |
|
94 |
- the outside. This step is usually fast, but may take up to 20 |
|
95 |
- minutes. Look for a <a href="<page docs/faq>#Logs">log entry</a> like |
|
96 |
- <pre>Self-testing indicates your ORPort is reachable from the outside. Excellent.</pre> |
|
97 |
- If you don't see this message, it means that your relay is not reachable |
|
98 |
- from the outside — you should re-check your firewalls, check that it's |
|
99 |
- testing the IP and port you think it should be testing, etc. |
|
100 |
- </p> |
|
101 |
- |
|
102 |
- <p>When your relay has decided that it's reachable, it will upload a "server |
|
103 |
- descriptor" to the directories, to let clients know |
|
104 |
- what address, ports, keys, etc your relay is using. You can search <a |
|
105 |
- href="https://atlas.torproject.org/">Atlas</a> or <a |
|
106 |
- href="https://globe.torproject.org/">Globe</a> for |
|
107 |
- the nickname you configured, to make sure it's there. You may need to wait |
|
108 |
- up to one hour for the directories to publish the new server information.</p> |
|
109 |
- |
|
110 |
- <hr> |
|
111 |
- <a id="after"></a> |
|
112 |
- <h2><a class="anchor" href="#after">Once your relay is working</a></h2> |
|
113 |
- <br> |
|
114 |
- |
|
115 |
- <p>To learn more about the proper care and feeding for your relay, |
|
116 |
- see the advice on the <a href=<page docs/tor-relay-debian>#after>Tor |
|
117 |
- relay on Debian/Ubuntu</a> page. |
|
118 |
- </p> |
|
119 |
- |
|
120 |
- <hr> |
|
121 |
- |
|
122 |
- <p>If you have suggestions for improving this document, please <a |
|
123 |
- href="<page about/contact>">send them to us</a>. Thanks |
|
124 |
- for helping to make the Tor network grow!</p> |
|
13 |
+ The Tor Relay documentation moved to the <a href="<wiki>TorRelayGuide">wiki</a>. |
|
125 | 14 |
</div> |
126 | 15 |
<!-- END MAINCOL --> |
127 | 16 |
<div id = "sidecol"> |
... | ... |
@@ -55,9 +55,10 @@ |
55 | 55 |
ContactInfo human@... |
56 | 56 |
</pre> |
57 | 57 |
|
58 |
+# TODO: Update link to PT setup docs |
|
58 | 59 |
<p>If you want to be a bridge, read about the BridgeRelay and |
59 | 60 |
ServerTransportPlugin values <a |
60 |
- href="<page projects/obfsproxy-instructions>#instructions">on |
|
61 |
+ href="<page docs/pluggable-transports>">on |
|
61 | 62 |
this page</a>.</p> |
62 | 63 |
|
63 | 64 |
<p>Tor will use all your bandwidth if you don't set limits for it. Some |
Fixes #16704. Also de-emphasize some other OSes. Relays belong in data
centers these days
... | ... |
@@ -23,8 +23,8 @@ |
23 | 23 |
</p> |
24 | 24 |
|
25 | 25 |
<p>You can run a Tor relay on pretty much any operating system. Tor relays |
26 |
- work best on Linux, OS X Lion or later, FreeBSD 5.x+, NetBSD 5.x+, and |
|
27 |
- Windows Server 2003 or later. |
|
26 |
+ work best on current distributions of Linux, FreeBSD, NetBSD, and |
|
27 |
+ Windows Server or later. |
|
28 | 28 |
</p> |
29 | 29 |
|
30 | 30 |
<p> |
... | ... |
@@ -37,15 +37,6 @@ |
37 | 37 |
with those operating systems. |
38 | 38 |
</p> |
39 | 39 |
|
40 |
- <p>Alas, since Vidalia (a graphical interface for Tor) is <a |
|
41 |
- href="<page docs/faq>#WhereDidVidaliaGo">no longer included</a> |
|
42 |
- in Tor Browser, there are currently no |
|
43 |
- easy relay packages for Windows and OS X users. One option might be to run |
|
44 |
- Debian in a VM, or use a different means of getting a Tor binary on |
|
45 |
- your system (Expert Bundle, Homebrew, Macports). Please help make |
|
46 |
- this process easier! |
|
47 |
- </p> |
|
48 |
- |
|
49 | 40 |
<hr> |
50 | 41 |
<a id="torrc"></a> |
51 | 42 |
<h2><a class="anchor" href="#torrc">Configure Tor by editing the torrc file</a></h2> |
... | ... |
@@ -53,10 +44,9 @@ |
53 | 44 |
|
54 | 45 |
<p> |
55 | 46 |
Tor's |
56 |
- configuration file is named 'torrc'. In the Tor Browser folder, it's |
|
57 |
- located at</p> |
|
58 |
- <pre>Data\Tor\torrc</pre> |
|
59 |
- <p>Open the file with a text editor and add the following lines:</p> |
|
47 |
+ configuration file is named 'torrc'.</p> |
|
48 |
+ <p>Locate the file on your system, open it with a text editor and add the |
|
49 |
+ following lines:</p> |
|
60 | 50 |
|
61 | 51 |
<pre> |
62 | 52 |
ORPort 443 |
... | ... |
@@ -18,12 +18,12 @@ |
18 | 18 |
<p> |
19 | 19 |
The Tor network relies on volunteers to donate bandwidth. The more |
20 | 20 |
people who run relays, the faster the Tor network will be. If you have |
21 |
- at least 250 kilobytes/s each way, please help out Tor by configuring your |
|
22 |
- Tor to be a relay too. |
|
21 |
+ at least 2 megabits/s for both upload and download, please help out |
|
22 |
+ Tor by configuring your Tor to be a relay too. |
|
23 | 23 |
</p> |
24 | 24 |
|
25 | 25 |
<p>You can run a Tor relay on pretty much any operating system. Tor relays |
26 |
- work best on Linux, OS X Tiger or later, FreeBSD 5.x+, NetBSD 5.x+, and |
|
26 |
+ work best on Linux, OS X Lion or later, FreeBSD 5.x+, NetBSD 5.x+, and |
|
27 | 27 |
Windows Server 2003 or later. |
28 | 28 |
</p> |
29 | 29 |
|
The downloads are horribly outdated, the docs are confusing and long.
Without a proper Vidalia maintainer and someone making packages, this
has no future.
... | ... |
@@ -37,20 +37,13 @@ |
37 | 37 |
with those operating systems. |
38 | 38 |
</p> |
39 | 39 |
|
40 |
- <p>Windows users can use the Vidalia Bridge Bundle, the Vidalia Relay |
|
41 |
- Bundle and the Vidalia Exit Bundle, which come preconfigured to run |
|
42 |
- Tor as a bridge, a non-exit relay, or an exit relay. Get them from |
|
43 |
- the <a href="<page download/download>">download page</a>, and use |
|
44 |
- the graphical instructions below for help setting them up. |
|
45 |
- </p> |
|
46 |
- |
|
47 | 40 |
<p>Alas, since Vidalia (a graphical interface for Tor) is <a |
48 | 41 |
href="<page docs/faq>#WhereDidVidaliaGo">no longer included</a> |
49 | 42 |
in Tor Browser, there are currently no |
50 |
- easy relay packages for OS X users. One option might be to run |
|
43 |
+ easy relay packages for Windows and OS X users. One option might be to run |
|
51 | 44 |
Debian in a VM, or use a different means of getting a Tor binary on |
52 |
- your system (Homebrew, Macports). Please help make this process |
|
53 |
- easier! |
|
45 |
+ your system (Expert Bundle, Homebrew, Macports). Please help make |
|
46 |
+ this process easier! |
|
54 | 47 |
</p> |
55 | 48 |
|
56 | 49 |
<hr> |
... | ... |
@@ -59,7 +52,7 @@ |
59 | 52 |
<br /> |
60 | 53 |
|
61 | 54 |
<p> |
62 |
- You can set up a relay without using Vidalia if you wish. Tor's |
|
55 |
+ Tor's |
|
63 | 56 |
configuration file is named 'torrc'. In the Tor Browser folder, it's |
64 | 57 |
located at</p> |
65 | 58 |
<pre>Data\Tor\torrc</pre> |
... | ... |
@@ -46,7 +46,7 @@ |
46 | 46 |
|
47 | 47 |
<p>Alas, since Vidalia (a graphical interface for Tor) is <a |
48 | 48 |
href="<page docs/faq>#WhereDidVidaliaGo">no longer included</a> |
49 |
- in the standard Tor Browser Bundle, there are currently no |
|
49 |
+ in Tor Browser, there are currently no |
|
50 | 50 |
easy relay packages for OS X users. One option might be to run |
51 | 51 |
Debian in a VM, or use a different means of getting a Tor binary on |
52 | 52 |
your system (Homebrew, Macports). Please help make this process |
... | ... |
@@ -81,7 +81,7 @@ |
81 | 81 |
options are described in <a href="<page docs/faq>#LimitTotalBandwidth">these</a> |
82 | 82 |
<a href="<page docs/faq>#BandwidthShaping">FAQ entries</a>.</p> |
83 | 83 |
|
84 |
- <p>See the <a href="https://gitweb.torproject.org/tor.git/blob_plain/HEAD:/src/config/torrc.sample.in">sample |
|
84 |
+ <p>See the <a href="https://gitweb.torproject.org/tor.git/plain/src/config/torrc.sample.in">sample |
|
85 | 85 |
torrc file</a> and the <a |
86 | 86 |
href="<page docs/tor-manual>">man |
87 | 87 |
page</a> for other Tor options you may want to set.</p> |
... | ... |
@@ -53,61 +53,6 @@ |
53 | 53 |
easier! |
54 | 54 |
</p> |
55 | 55 |
|
56 |
- <hr> |
|
57 |
- <a id="setup"></a> |
|
58 |
- <h2><a class="anchor" href="#setup">Configure Tor with the Vidalia Graphical Interface</a></h2> |
|
59 |
- <br> |
|
60 |
- |
|
61 |
- <p>Please note that this graphical approach is only for |
|
62 |
- Windows users (and very dedicated OS X users): most fast Tor |
|
63 |
- relays are run on Debian or Ubuntu using the <a href="<page |
|
64 |
- docs/tor-relay-debian>">system Tor package</a>, and we encourage |
|
65 |
- you to go that route too. |
|
66 |
- </p> |
|
67 |
- |
|
68 |
- <p> |
|
69 |
- Before you start, verify that your clock and timezone are set |
|
70 |
- correctly. If possible, synchronize your clock with public <a |
|
71 |
- href="http://en.wikipedia.org/wiki/Network_Time_Protocol">time |
|
72 |
- servers</a>. |
|
73 |
- </p> |
|
74 |
- |
|
75 |
- <ol type=1> |
|
76 |
- |
|
77 |
- |
|
78 |
-<li>Right click on the Vidalia icon in your task bar. Choose Control Panel.</li><br /> |
|
79 |
- <img alt="Vidalia right click menu" src="$(IMGROOT)/screenshot-win32-vidalia.png" /> |
|
80 |
- |
|
81 |
- <li>Click "Setup Relaying".</li> |
|
82 |
- |
|
83 |
- <li> |
|
84 |
- Choose "Relay Traffic for the Tor network" if you |
|
85 |
-want to be a public relay (recommended), or choose "Help |
|
86 |
-censored users reach the Tor network" if you want to be a <a |
|
87 |
-href="<page docs/faq>#RelayOrBridge">non-public bridge</a>.</li><br /> |
|
88 |
- <img alt="Vidalia basic settings" src="$(IMGROOT)/screenshot-win32-configure-relay-1.png" /> |
|
89 |
- |
|
90 |
- <li>Enter a nickname for your relay, and enter contact information in |
|
91 |
- case we need to contact you about problems.</li> |
|
92 |
- |
|
93 |
- <li>Leave "Attempt to automatically configure port forwarding" ticked. |
|
94 |
- Push the "Test" button to see if it works. If it does work, great. |
|
95 |
- If not, see the section on reachability below.</li> |
|
96 |
- |
|
97 |
- <li>Choose the "Bandwidth Limits" tab. Select how much bandwidth you want to provide for Tor users like yourself.</li><br /> |
|
98 |
- <img alt="Vidalia bandwidth limits" src="$(IMGROOT)/screenshot-win32-configure-relay-2.png" /> |
|
99 |
- |
|
100 |
- <li>Select the "Exit Policies" tab. If you want to allow others |
|
101 |
- to use your relay for these services, don't change anything. Un-check |
|
102 |
- the services you don't want to allow people to <a href="<page |
|
103 |
- docs/faq>#ExitPolicies">reach from your relay</a>. If you want to |
|
104 |
- be a non-exit relay, un-check all services.</li><br /> |
|
105 |
- <img alt="Vidalia exit policies" src="$(IMGROOT)/screenshot-win32-configure-relay-3.png" /> |
|
106 |
- |
|
107 |
- <li>Click "Ok".</li> |
|
108 |
- |
|
109 |
- </ol> |
|
110 |
- |
|
111 | 56 |
<hr> |
112 | 57 |
<a id="torrc"></a> |
113 | 58 |
<h2><a class="anchor" href="#torrc">Configure Tor by editing the torrc file</a></h2> |
... | ... |
@@ -47,11 +47,10 @@ |
47 | 47 |
<p>Alas, since Vidalia (a graphical interface for Tor) is <a |
48 | 48 |
href="<page docs/faq>#WhereDidVidaliaGo">no longer included</a> |
49 | 49 |
in the standard Tor Browser Bundle, there are currently no |
50 |
- easy relay packages for OS X users. One option is to run |
|
51 |
- Debian in a VM; another option is to install TBB and then a |
|
52 |
- standalone Vidalia bundle on top of it; and a third option is to <a |
|
53 |
- href="https://lists.torproject.org/pipermail/tor-relays/2014-June/004650.html">use |
|
54 |
- Homebrew</a>. Please help make this process easier! |
|
50 |
+ easy relay packages for OS X users. One option might be to run |
|
51 |
+ Debian in a VM, or use a different means of getting a Tor binary on |
|
52 |
+ your system (Homebrew, Macports). Please help make this process |
|
53 |
+ easier! |
|
55 | 54 |
</p> |
56 | 55 |
|
57 | 56 |
<hr> |
... | ... |
@@ -18,7 +18,7 @@ |
18 | 18 |
<p> |
19 | 19 |
The Tor network relies on volunteers to donate bandwidth. The more |
20 | 20 |
people who run relays, the faster the Tor network will be. If you have |
21 |
- at least 100 kilobytes/s each way, please help out Tor by configuring your |
|
21 |
+ at least 250 kilobytes/s each way, please help out Tor by configuring your |
|
22 | 22 |
Tor to be a relay too. |
23 | 23 |
</p> |
24 | 24 |
|
... | ... |
@@ -184,55 +184,16 @@ href="<page docs/faq>#RelayOrBridge">non-public bridge</a>.</li><br /> |
184 | 184 |
<h2><a class="anchor" href="#after">Once your relay is working</a></h2> |
185 | 185 |
<br> |
186 | 186 |
|
187 |
- <p>Subscribe to the <a |
|
188 |
- href="https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-announce">tor-announce</a> |
|
189 |
- mailing list. It is very low volume, and it will keep you informed |
|
190 |
- of new stable releases.</p> |
|
191 |
- |
|
192 |
- <p>As a relay operator, you should consider subscribing to the |
|
193 |
- <a href="https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-relays"> |
|
194 |
- tor-relays mailing list</a>. You might find <a |
|
195 |
- href="<page docs/documentation>#MailingLists">other higher-volume |
|
196 |
- Tor lists</a> of interest to you as well. |
|
187 |
+ <p>To learn more about the proper care and feeding for your relay, |
|
188 |
+ see the advice on the <a href=<page docs/tor-relay-debian>#after>Tor |
|
189 |
+ relay on Debian/Ubuntu</a> page. |
|
197 | 190 |
</p> |
198 | 191 |
|
199 |
- <p><a href="https://weather.torproject.org/">Tor Weather</a> provides |
|
200 |
- an email notification service to any users who want to monitor the |
|
201 |
- status of a Tor node. Upon subscribing, you can specify what types of |
|
202 |
- alerts you would like to receive. The main purpose of Tor Weather is |
|
203 |
- to notify node operators via email if their node is down for longer |
|
204 |
- than a specified period, but other notification types are available. |
|
205 |
- </p> |
|
206 |
- |
|
207 |
- <p>Read |
|
208 |
- <a href="<wiki>doc/OperationalSecurity">about operational security</a> |
|
209 |
- to get ideas how you can increase the security of your relay. |
|
210 |
- </p> |
|
211 |
- |
|
212 |
- <p> |
|
213 |
- If you control the name servers for your domain, consider setting your |
|
214 |
- reverse DNS hostname to 'anonymous-relay', 'proxy' or 'tor-proxy', so when |
|
215 |
- other people see the address in their web logs, they will more quickly |
|
216 |
- understand what's going on. Adding the <a |
|
217 |
- href="<gitblob>contrib/operator-tools/tor-exit-notice.html">Tor |
|
218 |
- exit notice</a> on a vhost for this name can go a long way to deterring abuse |
|
219 |
- complaints to you and your ISP if you are running an exit node. |
|
220 |
- </p> |
|
221 |
- |
|
222 |
- <p> |
|
223 |
- When you change your Tor configuration, remember to verify that your |
|
224 |
- relay still works correctly after the change. |
|
225 |
- If you have problems or questions, see |
|
226 |
- the <a href="<page docs/documentation>#Support">Support</a> section or |
|
227 |
- <a href="<page about/contact>">contact us</a>. Thanks |
|
228 |
- for helping to make the Tor network grow! |
|
229 |
- </p> |
|
230 |
- |
|
231 |
- |
|
232 | 192 |
<hr> |
233 | 193 |
|
234 | 194 |
<p>If you have suggestions for improving this document, please <a |
235 |
- href="<page about/contact>">send them to us</a>. Thanks!</p> |
|
195 |
+ href="<page about/contact>">send them to us</a>. Thanks |
|
196 |
+ for helping to make the Tor network grow!</p> |
|
236 | 197 |
</div> |
237 | 198 |
<!-- END MAINCOL --> |
238 | 199 |
<div id = "sidecol"> |
... | ... |
@@ -30,7 +30,7 @@ |
30 | 30 |
<p> |
31 | 31 |
The best approach for most users is to <a href="<page |
32 | 32 |
docs/tor-relay-debian>">run your relay on Debian or Ubuntu</a> using |
33 |
- the system Tor package &mdash the deb takes care of running Tor as a |
|
33 |
+ the system Tor package — the deb takes care of running Tor as a |
|
34 | 34 |
separate user, making sure it has enough file descriptors available, |
35 | 35 |
starting it at boot, and so on. Tor relays also run nicely on other |
36 | 36 |
Linux flavors, and on FreeBSD and NetBSD for those who are comfortable |
... | ... |
@@ -54,6 +54,18 @@ |
54 | 54 |
Homebrew</a>. Please help make this process easier! |
55 | 55 |
</p> |
56 | 56 |
|
57 |
+ <hr> |
|
58 |
+ <a id="setup"></a> |
|
59 |
+ <h2><a class="anchor" href="#setup">Configure Tor with the Vidalia Graphical Interface</a></h2> |
|
60 |
+ <br> |
|
61 |
+ |
|
62 |
+ <p>Please note that this graphical approach is only for |
|
63 |
+ Windows users (and very dedicated OS X users): most fast Tor |
|
64 |
+ relays are run on Debian or Ubuntu using the <a href="<page |
|
65 |
+ docs/tor-relay-debian>">system Tor package</a>, and we encourage |
|
66 |
+ you to go that route too. |
|
67 |
+ </p> |
|
68 |
+ |
|
57 | 69 |
<p> |
58 | 70 |
Before you start, verify that your clock and timezone are set |
59 | 71 |
correctly. If possible, synchronize your clock with public <a |
... | ... |
@@ -61,10 +73,6 @@ |
61 | 73 |
servers</a>. |
62 | 74 |
</p> |
63 | 75 |
|
64 |
- <hr> |
|
65 |
- <a id="setup"></a> |
|
66 |
- <h2><a class="anchor" href="#setup">Configure Tor with the Vidalia Graphical Interface</a></h2> |
|
67 |
- <br> |
|
68 | 76 |
<ol type=1> |
69 | 77 |
|
70 | 78 |
|
... | ... |
@@ -129,7 +129,7 @@ href="<page docs/faq>#RelayOrBridge">non-public bridge</a>.</li><br /> |
129 | 129 |
options are described in <a href="<page docs/faq>#LimitTotalBandwidth">these</a> |
130 | 130 |
<a href="<page docs/faq>#BandwidthShaping">FAQ entries</a>.</p> |
131 | 131 |
|
132 |
- <p>See the <a href="https://gitweb.torproject.org/tor.git/blob/HEAD:/src/config/torrc.sample.in">sample |
|
132 |
+ <p>See the <a href="https://gitweb.torproject.org/tor.git/blob_plain/HEAD:/src/config/torrc.sample.in">sample |
|
133 | 133 |
torrc file</a> and the <a |
134 | 134 |
href="<page docs/tor-manual>">man |
135 | 135 |
page</a> for other Tor options you may want to set.</p> |
... | ... |
@@ -28,36 +28,38 @@ |
28 | 28 |
</p> |
29 | 29 |
|
30 | 30 |
<p> |
31 |
- An easy way to get started is with Vidalia, a graphical interface for |
|
32 |
- Tor. Vidalia is not included in the standard Tor Browser Bundle, although it |
|
33 |
- <a href="<page docs/faq>#WhereDidVidaliaGo">once was</a>. |
|
34 |
- <p> |
|
31 |
+ The best approach for most users is to <a href="<page |
|
32 |
+ docs/tor-relay-debian>">run your relay on Debian or Ubuntu</a> using |
|
33 |
+ the system Tor package &mdash the deb takes care of running Tor as a |
|
34 |
+ separate user, making sure it has enough file descriptors available, |
|
35 |
+ starting it at boot, and so on. Tor relays also run nicely on other |
|
36 |
+ Linux flavors, and on FreeBSD and NetBSD for those who are comfortable |
|
37 |
+ with those operating systems. |
|
38 |
+ </p> |
|
35 | 39 |
|
36 |
- <p>The Vidalia Bridge Bundle, the Vidalia Relay Bundle |
|
37 |
- and the Vidalia Exit Bundle are available on the |
|
38 |
- <a href="<page download/download>">download |
|
39 |
- page</a>. These bundles are only available for Windows. They come |
|
40 |
- preconfigured to run Tor as a bridge, a non-exit relay, or an exit relay. |
|
40 |
+ <p>Windows users can use the Vidalia Bridge Bundle, the Vidalia Relay |
|
41 |
+ Bundle and the Vidalia Exit Bundle, which come preconfigured to run |
|
42 |
+ Tor as a bridge, a non-exit relay, or an exit relay. Get them from |
|
43 |
+ the <a href="<page download/download>">download page</a>, and use |
|
44 |
+ the graphical instructions below for help setting them up. |
|
41 | 45 |
</p> |
42 | 46 |
|
43 |
- <p> |
|
44 |
- Vidalia is also available as a standalone package from <a |
|
45 |
- href="https://people.torproject.org/~erinn/vidalia-standalone-bundles/">this |
|
46 |
- directory</a>. To use the Vidalia standalone, you will first need to <a |
|
47 |
- href="<page projects/torbrowser>">download the Tor Browser Bundle</a> |
|
48 |
- or the <a href="<page download/download>">Tor Expert Bundle</a>. |
|
49 |
- Unpack the Vidalia package into your Tor Browser folder. This will allow |
|
50 |
- Vidalia to control and configure the Tor Browser Bundle's Tor client. If |
|
51 |
- you use the Expert Bundle, which contains Tor only and no browser, you'll |
|
52 |
- need to inform Vidalia of your Tor's location. |
|
47 |
+ <p>Alas, since Vidalia (a graphical interface for Tor) is <a |
|
48 |
+ href="<page docs/faq>#WhereDidVidaliaGo">no longer included</a> |
|
49 |
+ in the standard Tor Browser Bundle, there are currently no |
|
50 |
+ easy relay packages for OS X users. One option is to run |
|
51 |
+ Debian in a VM; another option is to install TBB and then a |
|
52 |
+ standalone Vidalia bundle on top of it; and a third option is to <a |
|
53 |
+ href="https://lists.torproject.org/pipermail/tor-relays/2014-June/004650.html">use |
|
54 |
+ Homebrew</a>. Please help make this process easier! |
|
53 | 55 |
</p> |
54 | 56 |
|
55 | 57 |
<p> |
56 |
- Make sure your Tor works by using Tor as a client (surf with the Tor |
|
57 |
- Browser, for example). Verify that your clock and timezone are set |
|
58 |
+ Before you start, verify that your clock and timezone are set |
|
58 | 59 |
correctly. If possible, synchronize your clock with public <a |
59 | 60 |
href="http://en.wikipedia.org/wiki/Network_Time_Protocol">time |
60 |
- servers</a>.</p> |
|
61 |
+ servers</a>. |
|
62 |
+ </p> |
|
61 | 63 |
|
62 | 64 |
<hr> |
63 | 65 |
<a id="setup"></a> |
... | ... |
@@ -18,7 +18,7 @@ |
18 | 18 |
<p> |
19 | 19 |
The Tor network relies on volunteers to donate bandwidth. The more |
20 | 20 |
people who run relays, the faster the Tor network will be. If you have |
21 |
- at least 50 kilobytes/s each way, please help out Tor by configuring your |
|
21 |
+ at least 100 kilobytes/s each way, please help out Tor by configuring your |
|
22 | 22 |
Tor to be a relay too. |
23 | 23 |
</p> |
24 | 24 |
|
... | ... |
@@ -204,7 +204,7 @@ href="<page docs/faq>#RelayOrBridge">non-public bridge</a>.</li><br /> |
204 | 204 |
reverse DNS hostname to 'anonymous-relay', 'proxy' or 'tor-proxy', so when |
205 | 205 |
other people see the address in their web logs, they will more quickly |
206 | 206 |
understand what's going on. Adding the <a |
207 |
- href="<gitblob>contrib/tor-exit-notice.html">Tor |
|
207 |
+ href="<gitblob>contrib/operator-tools/tor-exit-notice.html">Tor |
|
208 | 208 |
exit notice</a> on a vhost for this name can go a long way to deterring abuse |
209 | 209 |
complaints to you and your ISP if you are running an exit node. |
210 | 210 |
</p> |
... | ... |
@@ -30,13 +30,12 @@ |
30 | 30 |
<p> |
31 | 31 |
An easy way to get started is with Vidalia, a graphical interface for |
32 | 32 |
Tor. Vidalia is not included in the standard Tor Browser Bundle, although it |
33 |
- <a href="https://www.torproject.org/docs/faq.html.en#WhereDidVidaliaGo">once |
|
34 |
- was</a>. |
|
33 |
+ <a href="<page docs/faq>#WhereDidVidaliaGo">once was</a>. |
|
35 | 34 |
<p> |
36 | 35 |
|
37 | 36 |
<p>The Vidalia Bridge Bundle, the Vidalia Relay Bundle |
38 | 37 |
and the Vidalia Exit Bundle are available on the |
39 |
- <a href="https://www.torproject.org/download/download.html.en">download |
|
38 |
+ <a href="<page download/download>">download |
|
40 | 39 |
page</a>. These bundles are only available for Windows. They come |
41 | 40 |
preconfigured to run Tor as a bridge, a non-exit relay, or an exit relay. |
42 | 41 |
</p> |
... | ... |
@@ -45,8 +44,8 @@ |
45 | 44 |
Vidalia is also available as a standalone package from <a |
46 | 45 |
href="https://people.torproject.org/~erinn/vidalia-standalone-bundles/">this |
47 | 46 |
directory</a>. To use the Vidalia standalone, you will first need to <a |
48 |
- href="https://torproject.org/projects/torbrowser.html.en">download |
|
49 |
- the Tor Browser Bundle</a> or the <a href="https://www.torproject.org/download/download.html.en">Tor Expert Bundle</a>. |
|
47 |
+ href="<page projects/torbrowser>">download the Tor Browser Bundle</a> |
|
48 |
+ or the <a href="<page download/download>">Tor Expert Bundle</a>. |
|
50 | 49 |
Unpack the Vidalia package into your Tor Browser folder. This will allow |
51 | 50 |
Vidalia to control and configure the Tor Browser Bundle's Tor client. If |
52 | 51 |
you use the Expert Bundle, which contains Tor only and no browser, you'll |
... | ... |
@@ -121,7 +120,7 @@ href="<page docs/faq>#RelayOrBridge">non-public bridge</a>.</li><br /> |
121 | 120 |
|
122 | 121 |
<p>If you want to be a bridge, read about the BridgeRelay and |
123 | 122 |
ServerTransportPlugin values <a |
124 |
- href="https://www.torproject.org/projects/obfsproxy-instructions.html.en#instructions">on |
|
123 |
+ href="<page projects/obfsproxy-instructions>#instructions">on |
|
125 | 124 |
this page</a>.</p> |
126 | 125 |
|
127 | 126 |
<p>Tor will use all your bandwidth if you don't set limits for it. Some |
... | ... |
@@ -130,7 +129,7 @@ href="<page docs/faq>#RelayOrBridge">non-public bridge</a>.</li><br /> |
130 | 129 |
|
131 | 130 |
<p>See the <a href="https://gitweb.torproject.org/tor.git/blob/HEAD:/src/config/torrc.sample.in">sample |
132 | 131 |
torrc file</a> and the <a |
133 |
- href="https://www.torproject.org/docs/tor-manual.html.en">man |
|
132 |
+ href="<page docs/tor-manual>">man |
|
134 | 133 |
page</a> for other Tor options you may want to set.</p> |
135 | 134 |
|
136 | 135 |
<hr> |
... | ... |
@@ -183,7 +182,7 @@ href="<page docs/faq>#RelayOrBridge">non-public bridge</a>.</li><br /> |
183 | 182 |
<p>As a relay operator, you should consider subscribing to the |
184 | 183 |
<a href="https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-relays"> |
185 | 184 |
tor-relays mailing list</a>. You might find <a |
186 |
- href="../docs/documentation.html.en#MailingLists">other higher-volume |
|
185 |
+ href="<page docs/documentation>#MailingLists">other higher-volume |
|
187 | 186 |
Tor lists</a> of interest to you as well. |
188 | 187 |
</p> |
189 | 188 |
|
... | ... |
@@ -28,33 +28,33 @@ |
28 | 28 |
</p> |
29 | 29 |
|
30 | 30 |
<p> |
31 |
- An easy way to get started is with Vidalia, a graphical interface for |
|
32 |
- Tor. Vidalia is not included in the standard Tor Browser Bundle, although it |
|
33 |
- <a href="https://www.torproject.org/docs/faq.html.en#WhereDidVidaliaGo">once |
|
34 |
- was</a>. |
|
31 |
+ An easy way to get started is with Vidalia, a graphical interface for |
|
32 |
+ Tor. Vidalia is not included in the standard Tor Browser Bundle, although it |
|
33 |
+ <a href="https://www.torproject.org/docs/faq.html.en#WhereDidVidaliaGo">once |
|
34 |
+ was</a>. |
|
35 | 35 |
<p> |
36 | 36 |
|
37 |
- <p>The Vidalia Bridge Bundle, the Vidalia Relay Bundle |
|
38 |
- and the Vidalia Exit Bundle are available on the |
|
39 |
- <a href="https://www.torproject.org/download/download.html.en">download |
|
40 |
- page</a>. These bundles are only available for Windows. They come |
|
41 |
- preconfigured to run Tor as a bridge, a non-exit relay, or an exit relay. |
|
37 |
+ <p>The Vidalia Bridge Bundle, the Vidalia Relay Bundle |
|
38 |
+ and the Vidalia Exit Bundle are available on the |
|
39 |
+ <a href="https://www.torproject.org/download/download.html.en">download |
|
40 |
+ page</a>. These bundles are only available for Windows. They come |
|
41 |
+ preconfigured to run Tor as a bridge, a non-exit relay, or an exit relay. |
|
42 | 42 |
</p> |
43 | 43 |
|
44 | 44 |
<p> |
45 |
- Vidalia is also available as a standalone package from <a |
|
46 |
- href="https://people.torproject.org/~erinn/vidalia-standalone-bundles/">this |
|
47 |
- directory</a>. To use the Vidalia standalone, you will first need to <a |
|
48 |
- href="https://torproject.org/projects/torbrowser.html.en">download |
|
49 |
- the Tor Browser Bundle</a> or the <a href="https://www.torproject.org/download/download.html.en">Tor Expert Bundle</a>. |
|
50 |
- Unpack the Vidalia package into your Tor Browser folder. This will allow |
|
51 |
- Vidalia to control and configure the Tor Browser Bundle's Tor client. If |
|
52 |
- you use the Expert Bundle, which contains Tor only and no browser, you'll |
|
45 |
+ Vidalia is also available as a standalone package from <a |
|
46 |
+ href="https://people.torproject.org/~erinn/vidalia-standalone-bundles/">this |
|
47 |
+ directory</a>. To use the Vidalia standalone, you will first need to <a |
|
48 |
+ href="https://torproject.org/projects/torbrowser.html.en">download |
|
49 |
+ the Tor Browser Bundle</a> or the <a href="https://www.torproject.org/download/download.html.en">Tor Expert Bundle</a>. |
|
50 |
+ Unpack the Vidalia package into your Tor Browser folder. This will allow |
|
51 |
+ Vidalia to control and configure the Tor Browser Bundle's Tor client. If |
|
52 |
+ you use the Expert Bundle, which contains Tor only and no browser, you'll |
|
53 | 53 |
need to inform Vidalia of your Tor's location. |
54 | 54 |
</p> |
55 | 55 |
|
56 | 56 |
<p> |
57 |
- Make sure your Tor works by using Tor as a client (surf with the Tor |
|
57 |
+ Make sure your Tor works by using Tor as a client (surf with the Tor |
|
58 | 58 |
Browser, for example). Verify that your clock and timezone are set |
59 | 59 |
correctly. If possible, synchronize your clock with public <a |
60 | 60 |
href="http://en.wikipedia.org/wiki/Network_Time_Protocol">time |
... | ... |
@@ -106,8 +106,8 @@ href="<page docs/faq>#RelayOrBridge">non-public bridge</a>.</li><br /> |
106 | 106 |
<br /> |
107 | 107 |
|
108 | 108 |
<p> |
109 |
- You can set up a relay without using Vidalia if you wish. Tor's |
|
110 |
- configuration file is named 'torrc'. In the Tor Browser folder, it's |
|
109 |
+ You can set up a relay without using Vidalia if you wish. Tor's |
|
110 |
+ configuration file is named 'torrc'. In the Tor Browser folder, it's |
|
111 | 111 |
located at</p> |
112 | 112 |
<pre>Data\Tor\torrc</pre> |
113 | 113 |
<p>Open the file with a text editor and add the following lines:</p> |
... | ... |
@@ -119,17 +119,17 @@ href="<page docs/faq>#RelayOrBridge">non-public bridge</a>.</li><br /> |
119 | 119 |
ContactInfo human@... |
120 | 120 |
</pre> |
121 | 121 |
|
122 |
- <p>If you want to be a bridge, read about the BridgeRelay and |
|
123 |
- ServerTransportPlugin values <a |
|
122 |
+ <p>If you want to be a bridge, read about the BridgeRelay and |
|
123 |
+ ServerTransportPlugin values <a |
|
124 | 124 |
href="https://www.torproject.org/projects/obfsproxy-instructions.html.en#instructions">on |
125 | 125 |
this page</a>.</p> |
126 | 126 |
|
127 |
- <p>Tor will use all your bandwidth if you don't set limits for it. Some |
|
128 |
- options are described in <a href="<page docs/faq>#LimitTotalBandwidth">these</a> |
|
127 |
+ <p>Tor will use all your bandwidth if you don't set limits for it. Some |
|
128 |
+ options are described in <a href="<page docs/faq>#LimitTotalBandwidth">these</a> |
|
129 | 129 |
<a href="<page docs/faq>#BandwidthShaping">FAQ entries</a>.</p> |
130 | 130 |
|
131 |
- <p>See the <a href="https://gitweb.torproject.org/tor.git/blob/HEAD:/src/config/torrc.sample.in">sample |
|
132 |
- torrc file</a> and the <a |
|
131 |
+ <p>See the <a href="https://gitweb.torproject.org/tor.git/blob/HEAD:/src/config/torrc.sample.in">sample |
|
132 |
+ torrc file</a> and the <a |
|
133 | 133 |
href="https://www.torproject.org/docs/tor-manual.html.en">man |
134 | 134 |
page</a> for other Tor options you may want to set.</p> |
135 | 135 |
|
... | ... |
@@ -165,9 +165,9 @@ href="<page docs/faq>#RelayOrBridge">non-public bridge</a>.</li><br /> |
165 | 165 |
<p>When your relay has decided that it's reachable, it will upload a "server |
166 | 166 |
descriptor" to the directories, to let clients know |
167 | 167 |
what address, ports, keys, etc your relay is using. You can search <a |
168 |
- href="https://atlas.torproject.org/">Atlas</a> or <a |
|
169 |
- href="https://globe.torproject.org/">Globe</a> for |
|
170 |
- the nickname you configured, to make sure it's there. You may need to wait |
|
168 |
+ href="https://atlas.torproject.org/">Atlas</a> or <a |
|
169 |
+ href="https://globe.torproject.org/">Globe</a> for |
|
170 |
+ the nickname you configured, to make sure it's there. You may need to wait |
|
171 | 171 |
up to one hour for the directories to publish the new server information.</p> |
172 | 172 |
|
173 | 173 |
<hr> |
... | ... |
@@ -179,11 +179,11 @@ href="<page docs/faq>#RelayOrBridge">non-public bridge</a>.</li><br /> |
179 | 179 |
href="https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-announce">tor-announce</a> |
180 | 180 |
mailing list. It is very low volume, and it will keep you informed |
181 | 181 |
of new stable releases.</p> |
182 |
- |
|
183 |
- <p>As a relay operator, you should consider subscribing to the |
|
182 |
+ |
|
183 |
+ <p>As a relay operator, you should consider subscribing to the |
|
184 | 184 |
<a href="https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-relays"> |
185 | 185 |
tor-relays mailing list</a>. You might find <a |
186 |
- href="../docs/documentation.html.en#MailingLists">other higher-volume |
|
186 |
+ href="../docs/documentation.html.en#MailingLists">other higher-volume |
|
187 | 187 |
Tor lists</a> of interest to you as well. |
188 | 188 |
</p> |
189 | 189 |
|
... | ... |
@@ -102,7 +102,7 @@ href="<page docs/faq>#RelayOrBridge">non-public bridge</a>.</li><br /> |
102 | 102 |
|
103 | 103 |
<hr> |
104 | 104 |
<a id="torrc"></a> |
105 |
- <h2><a class="anchor" href="#torrc">Configuring Tor by editing the torrc file</a></h2> |
|
105 |
+ <h2><a class="anchor" href="#torrc">Configure Tor by editing the torrc file</a></h2> |
|
106 | 106 |
<br /> |
107 | 107 |
|
108 | 108 |
<p> |
... | ... |
@@ -31,21 +31,14 @@ |
31 | 31 |
An easy way to get started is with Vidalia, a graphical interface for |
32 | 32 |
Tor. Vidalia is not included in the standard Tor Browser Bundle, although it |
33 | 33 |
<a href="https://www.torproject.org/docs/faq.html.en#WhereDidVidaliaGo">once |
34 |
- was</a>. You can use Vidalia as part of the preconfigured bundles, or as a |
|
35 |
- seperate program. |
|
34 |
+ was</a>. |
|
36 | 35 |
<p> |
37 | 36 |
|
38 | 37 |
<p>The Vidalia Bridge Bundle, the Vidalia Relay Bundle |
39 |
- and the Vidalia Exit Bundle can be found on the |
|
38 |
+ and the Vidalia Exit Bundle are available on the |
|
40 | 39 |
<a href="https://www.torproject.org/download/download.html.en">download |
41 |
- page</a>. These packages are already configured to run Tor as a bridge, a |
|
42 |
- non-exit relay, or an exit relay. These bundles are only available for |
|
43 |
- Windows. |
|
44 |
- </p> |
|
45 |
- |
|
46 |
- <p> |
|
47 |
- If you are not the using the Bridge Bundle, Relay Bundle or Exit Bundle, |
|
48 |
- you will need to . |
|
40 |
+ page</a>. These bundles are only available for Windows. They come |
|
41 |
+ preconfigured to run Tor as a bridge, a non-exit relay, or an exit relay. |
|
49 | 42 |
</p> |
50 | 43 |
|
51 | 44 |
<p> |
... | ... |
@@ -55,13 +48,9 @@ |
55 | 48 |
href="https://torproject.org/projects/torbrowser.html.en">download |
56 | 49 |
the Tor Browser Bundle</a> or the <a href="https://www.torproject.org/download/download.html.en">Tor Expert Bundle</a>. |
57 | 50 |
Unpack the Vidalia package into your Tor Browser folder. This will allow |
58 |
- Vidalia to control and configure the Tor Browser Bundle's Tor client. |
|
59 |
- </p> |
|
60 |
- |
|
61 |
- <p> |
|
62 |
- If you use the Expert Bundle, which contains Tor only and no browser, |
|
63 |
- you'll need to inform Vidalia of your Tor's location. You can not run |
|
64 |
- Vidalia unless Tor is running. |
|
51 |
+ Vidalia to control and configure the Tor Browser Bundle's Tor client. If |
|
52 |
+ you use the Expert Bundle, which contains Tor only and no browser, you'll |
|
53 |
+ need to inform Vidalia of your Tor's location. |
|
65 | 54 |
</p> |
66 | 55 |
|
67 | 56 |
<p> |
... | ... |
@@ -71,30 +60,6 @@ |
71 | 60 |
href="http://en.wikipedia.org/wiki/Network_Time_Protocol">time |
72 | 61 |
servers</a>.</p> |
73 | 62 |
|
74 |
-<!-- |
|
75 |
- <p>If you're comfortable editing text files, skip this page and |
|
76 |
- go to our dedicated <a href="<page docs/tor-relay-debian>">Relay |
|
77 |
- Configuration Instructions on Debian/Ubuntu</a> page. That page is |
|
78 |
- the best one for relay operators on BSD, Unix, etc as well.</p> |
|
79 |
- |
|
80 |
- |
|
81 |
- <hr> |
|
82 |
- <a id="zero"></a> |
|
83 |
- <a id="install"></a> |
|
84 |
- <h2><a class="anchor" href="#install">Step One: Download and Install Tor</a></h2> |
|
85 |
- <br> |
|
86 |
- |
|
87 |
- <p>Before you start, you need to make sure that Tor is up and running. |
|
88 |
- </p> |
|
89 |
- |
|
90 |
- <p>Visit our <a href="<page download/download>">download page</a> and |
|
91 |
- install the "Installation Bundle" for your OS. |
|
92 |
- </p> |
|
93 |
- |
|
94 |
- <p>If it's convenient, you might also want to use it as a client for a |
|
95 |
- while to make sure it's actually working.</p> |
|
96 |
- |
|
97 | 63 |
<hr> |
98 | 64 |
<a id="setup"></a> |
99 | 65 |
<h2><a class="anchor" href="#setup">Configure Tor with the Vidalia Graphical Interface</a></h2> |
... | ... |
@@ -102,10 +67,8 @@ |
102 | 67 |
<ol type=1> |
103 | 68 |
|
104 | 69 |
|
105 |
- <li> |
|
106 |
- Right click on the Vidalia icon in your task bar. Choose Control Panel. |
|
107 |
- <img alt="vidalia right click menu" src="$(IMGROOT)/screenshot-win32-vidalia.png" /> |
|
108 |
- </li> |
|
70 |
+<li>Right click on the Vidalia icon in your task bar. Choose Control Panel.</li><br /> |
|
71 |
+ <img alt="Vidalia right click menu" src="$(IMGROOT)/screenshot-win32-vidalia.png" /> |
|
109 | 72 |
|
110 | 73 |
<li>Click "Setup Relaying".</li> |
111 | 74 |
|
... | ... |
@@ -113,66 +76,51 @@ |
113 | 76 |
Choose "Relay Traffic for the Tor network" if you |
114 | 77 |
want to be a public relay (recommended), or choose "Help |
115 | 78 |
censored users reach the Tor network" if you want to be a <a |
116 |
-href="<page docs/faq>#RelayOrBridge">non-public bridge</a>. |
|
117 |
- <img alt="vidalia basic settings" src="$(IMGROOT)/screenshot-win32-configure-relay-1.png" /> |
|
118 |
- </li> |
|
79 |
+href="<page docs/faq>#RelayOrBridge">non-public bridge</a>.</li><br /> |
|
80 |
+ <img alt="Vidalia basic settings" src="$(IMGROOT)/screenshot-win32-configure-relay-1.png" /> |
|
119 | 81 |
|
120 | 82 |
<li>Enter a nickname for your relay, and enter contact information in |
121 | 83 |
case we need to contact you about problems.</li> |
122 | 84 |
|
123 |
- <li>Leave "Attempt to automatically configure port forwarding" clicked. |
|
124 |
- Push the "Test" button to see if it works. If it does work, great. |
|
125 |
- If not, see number 3 below.</li> |
|
85 |
+ <li>Leave "Attempt to automatically configure port forwarding" ticked. |
|
86 |
+ Push the "Test" button to see if it works. If it does work, great. |
|
87 |
+ If not, see the section on reachability below.</li> |
|
126 | 88 |
|
127 |
- <li>Choose the "Bandwidth Limits" tab. Select how much bandwidth you want to provide for Tor users like yourself. |
|
128 |
- <img alt="vidalia bandwidth limits" src="$(IMGROOT)/screenshot-win32-configure-relay-2.png" /> |
|
129 |
- </li> |
|
89 |
+ <li>Choose the "Bandwidth Limits" tab. Select how much bandwidth you want to provide for Tor users like yourself.</li><br /> |
|
90 |
+ <img alt="Vidalia bandwidth limits" src="$(IMGROOT)/screenshot-win32-configure-relay-2.png" /> |
|
130 | 91 |
|
131 | 92 |
<li>Select the "Exit Policies" tab. If you want to allow others |
132 | 93 |
to use your relay for these services, don't change anything. Un-check |
133 | 94 |
the services you don't want to allow people to <a href="<page |
134 | 95 |
docs/faq>#ExitPolicies">reach from your relay</a>. If you want to |
135 |
- be a non-exit relay, un-check all services. |
|
136 |
- <img alt="vidalia exit policies" src="$(IMGROOT)/screenshot-win32-configure-relay-3.png" /> |
|
137 |
- </li> |
|
96 |
+ be a non-exit relay, un-check all services.</li><br /> |
|
97 |
+ <img alt="Vidalia exit policies" src="$(IMGROOT)/screenshot-win32-configure-relay-3.png" /> |
|
138 | 98 |
|
139 | 99 |
<li>Click "Ok".</li> |
140 | 100 |
|
141 |
- <li>If you are using a firewall, open a hole in your firewall |
|
142 |
- so incoming connections can reach the ports you configured |
|
143 |
- (ORPort, plus DirPort if you enabled it). If you have a |
|
144 |
- hardware firewall (Linksys box, cable modem, etc) you might find <a |
|
145 |
- href="http://portforward.com/">portforward.com</a> useful. Also, make sure you |
|
146 |
- allow all <em>outgoing</em> connections too, so your relay can reach the |
|
147 |
- other Tor relays. |
|
148 |
- </li> |
|
149 |
- |
|
150 |
- <li>Restart your relay. If it <a |
|
151 |
- href="<page docs/faq>#Logs">logs |
|
152 |
- any warnings</a>, address them. |
|
153 |
- </li> |
|
154 |
- |
|
155 | 101 |
</ol> |
156 | 102 |
|
157 | 103 |
<hr> |
158 | 104 |
<a id="torrc"></a> |
159 | 105 |
<h2><a class="anchor" href="#torrc">Configuring Tor by editing the torrc file</a></h2> |
106 |
+ <br /> |
|
160 | 107 |
|
161 | 108 |
<p> |
162 |
- You can also set up a relay without Vidalia. Tor's configuration file is named 'torrc'. |
|
163 |
- In the Tor Browser folder, it's located at <pre>Data\Tor\torrc<pre>. |
|
164 |
- Open the file with a text editor and add the following lines: |
|
165 |
- </p> |
|
109 |
+ You can set up a relay without using Vidalia if you wish. Tor's |
|
110 |
+ configuration file is named 'torrc'. In the Tor Browser folder, it's |
|
111 |
+ located at</p> |
|
112 |
+ <pre>Data\Tor\torrc</pre> |
|
113 |
+ <p>Open the file with a text editor and add the following lines:</p> |
|
166 | 114 |
|
167 | 115 |
<pre> |
168 | 116 |
ORPort 443 |
169 | 117 |
Exitpolicy reject *:* |
170 |
- Nickname mycleverrelayname |
|
118 |
+ Nickname ididntedittheconfig |
|
171 | 119 |
ContactInfo human@... |
172 | 120 |
</pre> |
173 | 121 |
|
174 |
- <p>If you want to be a bridge, you can read how to set the BridgeRelay |
|
175 |
- and ServerTransportPlugin values <a |
|
122 |
+ <p>If you want to be a bridge, read about the BridgeRelay and |
|
123 |
+ ServerTransportPlugin values <a |
|
176 | 124 |
href="https://www.torproject.org/projects/obfsproxy-instructions.html.en#instructions">on |
177 | 125 |
this page</a>.</p> |
178 | 126 |
|
... | ... |
@@ -183,13 +131,27 @@ href="<page docs/faq>#RelayOrBridge">non-public bridge</a>. |
183 | 131 |
<p>See the <a href="https://gitweb.torproject.org/tor.git/blob/HEAD:/src/config/torrc.sample.in">sample |
184 | 132 |
torrc file</a> and the <a |
185 | 133 |
href="https://www.torproject.org/docs/tor-manual.html.en">man |
186 |
- page</a> for other available Tor options.</p> |
|