]> nos-oignons.net Git - website.git/blob - Services.mdwn
Services : en fait Nos oignons paye la VM chez Gandi
[website.git] / Services.mdwn
1 [[!meta script="assets/l10n.fr"]]
2 [[!meta script="assets/relays"]]
3 [[!meta script="assets/d3/d3.v3.min"]]
4 [[!meta script="assets/bw_graphs"]]
5 [[!meta stylesheet="assets/bw_graphs" rel="stylesheet"]]
6 [[!meta script="assets/pie_graphs"]]
7 [[!meta title="Services"]]
8
9 <script>
10
11 var content = d3.select("#content");
12 var consensus_figure = content.append("figure")
13   .style("margin", "0")
14   .style("width", "45%")
15   .style("float", "left")
16   .style("text-align", "center");
17 consensus_figure.append("span")
18   .attr("id", "consensus-pie");
19 consensus_figure.append("figcaption")
20   .text(L10n.consensus_weight);
21
22 var exit_figure = content.append("figure")
23   .style("margin", "0 5% 0 0")
24   .style("width", "44%")
25   .style("float", "left")
26   .style("text-align", "center");
27 exit_figure.append("span")
28   .attr("id", "exit-pie");
29 exit_figure.append("figcaption")
30   .text(L10n.exit_probability);
31
32 content.append("div")
33   .style("clear", "left");
34
35 new ConsensusPieDrawer("#consensus-pie").draw();
36 new ExitPieDrawer("#exit-pie").draw();
37 </script>
38
39 Relais
40 ======
41
42 Nos oignons fait actuellement fonctionner les relais Tor suivants :
43
44 <table>
45   <thead>
46     <tr>
47       <th>Emplacement</th>
48       <th>Relai</th>
49       <th>Empreinte</th>
50       <th>Politique de sortie</th>
51     </tr>
52   </thead>
53   <tbody>
54     <tr>
55       <td><a href="http://www.liazo.fr/">Liazo</a></td>
56       <td><a href="https://atlas.torproject.org/#details/011FDD1EE84DAC7758119B69829C74A9D197B35E">marcuse1</a><sup>1</sup></td>
57       <td><code>011F DD1E E84D AC77 5811 9B69 829C 74A9 D197 B35E</code></td>
58       <td><a href="https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy">Reduced Exit Policy</a></td>
59     </tr>
60     <tr>
61       <td><a href="http://www.liazo.fr/">Liazo</a></td>
62       <td><a href="https://atlas.torproject.org/#details/1A503BBFFC82A4EFD75DB46A071A7340E11A9DB9">marcuse2</a><sup>2</sup></td>
63       <td><code>1A50 3BBF FC82 A4EF D75D B46A 071A 7340 E11A 9DB9</code></td>
64       <td><a href="https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy">Reduced Exit Policy</a></td>
65     </tr>
66     <tr>
67       <td><a href="https://www.gandi.net/">Gandi</a><sup>3</sup></td>
68       <td><a href="https://atlas.torproject.org/#details/7F2CD6BD548C5FFA09B20A0C5CB07893C9451653">ekumen</a></td>
69       <td><code>7F2C D6BD 548C 5FFA 09B2 0A0C 5CB0 7893 C945 1653</code></td>
70       <td><a href="https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy">Reduced Exit Policy</a></td>
71     </tr>
72   </tbody>
73   <tfoot class="footnotes">
74     <tr>
75       <td colspan="4">
76         1,2 : <code>marcuse1</code> et <code>marcuse2</code> sont sur une même
77         machine. Afin de palier à des limitations techniques du logiciel dans
78         la gestion du multi-cœur, il est nécessaire de faire fonctionner deux
79         relais afin de pouvoir utiliser toute la bande passante disponible.
80       </td>
81     </tr>
82     <tr>
83       <td colspan="4">
84         3 : Gandi nous fournit gracieusement la bande passante pour faire tourner
85         ce noeud.
86       </td>
87     </tr>
88   </tfoot>
89 </table>
90
91 <script>
92 d3.select("#content").append("h1")
93   .text(L10n.bandwidth);
94 d3.select("#content").append("div")
95   .attr("id", "bandwidth")
96   .text(L10n.loading);
97
98 new BwDrawer("#bandwidth").draw();
99 </script>