]> nos-oignons.net Git - website.git/blob - Services.mdwn
marylou -> marylou1 et marylou2
[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/EFAE44728264982224445E96214C15F9075DEE1D">marcuse1</a><sup>1</sup></td>
57       <td><code>EFAE 4472 8264 9822 2444 5E96 214C 15F9 075D EE1D</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/C656B41AEFB40A141967EBF49D6E69603C9B4A11">marcuse2</a><sup>2</sup></td>
63       <td><code>C656 B41A EFB4 0A14 1967 EBF4 9D6E 6960 3C9B 4A11</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/9BA84E8C90083676F86C7427C8D105925F13716C">ekumen</a></td>
69       <td><code>9BA8 4E8C 9008 3676 F86C 7427 C8D1 0592 5F13 716C</code></td>
70       <td><a href="https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy">Reduced Exit Policy</a></td>
71     </tr>
72     <tr>
73       <td><a href="https://tetaneutral.net/">tetaneutral.net</a></td>
74       <td><a href="https://atlas.torproject.org/#details/578E007E5E4535FBFEF7758D8587B07B4C8C5D06">marylou1</a><sup>4</sup></td>
75       <td><code>578E 007E 5E45 35FB FEF7 758D 8587 B07B 4C8C 5D06</code></td>
76       <td><a href="https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy">Reduced Exit Policy</a></td>
77     </tr>
78     <tr>
79       <td><a href="https://tetaneutral.net/">tetaneutral.net</a></td>
80       <td><a href="https://atlas.torproject.org/#details/90FD830C357A5109AB3C505287713F1AC811174C">marylou2</a><sup>5</sup></td>
81       <td><code>90FD 830C 357A 5109 AB3C 5052 8771 3F1A C811 174C</code></td>
82       <td><a href="https://trac.torproject.org/projects/tor/wiki/doc/ReducedExitPolicy">Reduced Exit Policy</a></td>
83     </tr>
84
85   </tbody>
86   <tfoot class="footnotes">
87     <tr>
88       <td colspan="4">
89         1,2 : <code>marcuse1</code> et <code>marcuse2</code> sont sur une même
90         machine. Afin de palier à des limitations techniques du logiciel dans
91         la gestion du multi-cœur, il est nécessaire de faire fonctionner deux
92         relais afin de pouvoir utiliser toute la bande passante disponible.
93       </td>
94     </tr>
95     <tr>
96       <td colspan="4">
97         3 : Gandi nous fournit gracieusement la bande passante pour faire tourner
98         ce noeud.
99       </td>
100       </tr>
101         <tr>
102       <td colspan="4">
103         4,5 : <code>marylou1</code> et <code>marylou2</code> sont sur une même
104         machine. Afin de palier à des limitations techniques du logiciel dans
105         la gestion du multi-cœur, il est nécessaire de faire fonctionner deux
106         relais afin de pouvoir utiliser toute la bande passante disponible.
107       </td>
108     </tr>
109   </tfoot>
110 </table>
111
112 <script>
113 d3.select("#content").append("h1")
114   .text(L10n.bandwidth);
115 d3.select("#content").append("div")
116   .attr("id", "bandwidth")
117   .text(L10n.loading);
118
119 new BwDrawer("#bandwidth").draw();
120 </script>