-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfbtests.html
More file actions
41 lines (36 loc) · 2.18 KB
/
fbtests.html
File metadata and controls
41 lines (36 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en-us">
<head>
<script>
function CopyToClipboard() {
var elem = event.target.previousElementSibling;
/* Copy the text inside the text field */
navigator.clipboard.writeText(elem.textContent);
/* Alert the copied text */
//alert("Copied the text: " + elem.textContent);
console.log("'" + elem.textContent + "' sent to clipboard")
}
</script>
</head>
<body>
<h2>TEST DEBIT LOCAL FREEBOX POUR WINDOWS</h2>
<h3><strong>Lancer 'powershell'</strong></h3>
<p>il y a plusieurs méthodes dont:</p>
<ul>
<li>en cliquant sur la loupe (recherche) en bas de la barre Windows et saisir 'powershell'</li>
<li>en appuyant sur la touche ⊞ (touche Windows ) et la touche X en meme temps et choisir 'powershell' (ou "terminal") dans le menu qui apparait.</li>
</ul>
<p>Dans la fenêtre qui apparait (fond bleu en général) ,saisir ou copier/coller les commandes suivantes:</p>
<p><span style="color: #0000ff;">Get-NetAdapter</span> <button onclick="CopyToClipboard()">copier</button></p>
<p><span style="color: #0000ff;">Get-NetAdapterHardwareInfo</span> <button onclick="CopyToClipboard()">copier</button></p>
<p>et poster leurs résultats.</p>
<h3><strong>Ensuite faire un test avec NSpeed</strong>:</h3>
<p>Dans la meme fenêtre:</p>
<p><span style="color: #0000ff;">wget -outfile nspeed.exe https://dl.nspeed.app/nspeed-client/latest/nspeed_windows_amd64.exe </span><button onclick="CopyToClipboard()">copier</button></p>
<p>cela va télécharger le programme nspeed qui permet de faire des mesures de débit en ligne de commande.</p>
<p>Puis nous donner les résultats de:</p>
<p><span style="color: #0000ff;">./nspeed.exe -cpu get http://mafreebox.freebox.fr/gen/10G</span> <button onclick="CopyToClipboard()">copier</button></p>
<p><span style="color: #0000ff;">./nspeed.exe -cpu get -n 4 http://mafreebox.freebox.fr/gen/10G</span> <button onclick="CopyToClipboard()">copier</button></p>
<br> pour Freepro, remplacer <span style="color: #0000ff;">mafreebox.freebox.fr</span> par <span style="color: #0000ff;">mafreebox.freepro.com</span>
</body>
</html>