This is the initial creation of a page that explains how bridges work within the wml framework.
Jacob Appelbaum

Jacob Appelbaum commited on 2008-04-30 03:03:48
Zeige 1 geänderte Dateien mit 84 Einfügungen und 0 Löschungen.

... ...
@@ -0,0 +1,84 @@
1
+## translation metadata
2
+# Revision: $Revision: 13768 $
3
+# Translation-Priority: 1-high
4
+
5
+#include "head.wmi" TITLE="Tor: Bridges" CHARSET="UTF-8"
6
+
7
+<div class="main-column">
8
+
9
+<a id="BridgeIntroduction"></a>
10
+<h1><a class="anchor" href="#BridgeIntroduction">Tor: Bridges</a></h1>
11
+<hr />
12
+
13
+<p>
14
+Bridge relays (or "bridges" for short) are Tor relays that aren't listed in 
15
+the main directory. Since there is no complete public list of them, even if 
16
+your ISP is filtering connections to all the known Tor relays, they probably 
17
+won't be able to block all the bridges.
18
+</p>
19
+
20
+<p>
21
+To use a bridge, you'll need to locate one. Furthermore, you'll need to 
22
+configure Tor with whatever bridge address you intend to use.
23
+</p>
24
+
25
+<p>
26
+At the moment, you can get a bridge by visiting 
27
+<a href="https://bridges.torproject.org/">https://bridges.torproject.org/</a> 
28
+with your web browser.
29
+</p>
30
+
31
+<a id="Understanding"></a>
32
+<h2><a class="anchor" href="#Understanding">Understanding bridges</a></h2>
33
+<hr />
34
+
35
+<p>
36
+As an example exercise, you'll get a bridge entry that looks like the 
37
+following:<br>
38
+<pre>
39
+bridge 141.201.27.48:443 4352e58420e68f5e40bf7c74faddccd9d1349413
40
+</pre>
41
+</p>
42
+
43
+<p>
44
+Understanding the above example isn't strictly required but may prove useful. 
45
+You can skip this section if you'd like.
46
+The first element is the name: <tt>'bridge'</tt>.<br>
47
+The second element is the IP address: <tt>'141.201.27.48'</tt><br>
48
+The third element is the port: <tt>'443'</tt><br>
49
+The fourth element is the fingerprint: 
50
+<tt>'4352e58420e68f5e40bf7c74faddccd9d1349413'</tt><br>
51
+</p>
52
+
53
+<a id="UsingBridges"></a>
54
+<h3><a class="anchor" href="#UsingBridges">Using bridges with Tor and Vidalia</a></h3>
55
+<hr />
56
+
57
+<p>
58
+To use the example bridge address above, go to Vidalia's Network settings 
59
+page, and click "My ISP blocks connections to the Tor network". You'll want 
60
+to add as many bridge addresses as you know about. Regardless of how many 
61
+bridges you intend to use, the process for use is the same. Add each bridge 
62
+address one at a time in the Vidalia Network settings page. One bridge should 
63
+be enough for general use. However, in the event of using a single bridge, 
64
+one bridge failing will cause loss of access to the Tor network. Adding 
65
+additional bridges will increase reliability. This is pictured below:<br><br>
66
+<img src="$(IMGROOT)/vidalia-bridges.png" alt="Vidalia's Network settings page" />
67
+<br><br>
68
+</p>
69
+
70
+<a id="FindingMore"></a>
71
+<h4><a class="anchor" href="#FindingMore">Finding more bridges with Tor</a></h4>
72
+<hr />
73
+
74
+<p>
75
+Another way to find public bridge addresses is to send mail to 
76
+bridges@torproject.org with the line "get bridges" by itself in the body of the 
77
+mail. However, so we can make it harder for an attacker to learn lots of bridge 
78
+addresses, you must send this request from a gmail or yahoo account.
79
+</p>
80
+
81
+  </div><!-- #main -->
82
+
83
+#include <foot.wmi>
84
+
0 85