<&contentdata section_name = 'tools' page_name = 'speed_test' author = 'mrmt32' type = 'page' >

Target SNR Margin

Type in a url to download and the size of the file (or just use the default) and click "Test" to perform a speed test.

Note that this may take a while to complete for slow connections.

<&javascript delayed='true'> $("#speedTestForm").submit(function() { $.post(InterfaceLocation + "?action=speed_test", $("#speedTestForm").serialize(), function(jsonResponse) { if (jsonResponse.isError) { alert("Error performing speed test: " + jsonResponse.ErrorString); window.location.hash = "#tools"; return; } ParseContentData(window.ContentData.blocks.speed_test_result_block, {speed: Math.round(jsonResponse.ReturnData.Speed * 100) / 100, address: jsonResponse.ReturnData.Address}, function (output) { $(".settingsPage").html(output); }); }, "json"); ParseContentData(window.ContentData.blocks.loading_text_block, {}, function (output) { $(".settingsPage").html(output); }); return false; }); <&/javascript>
<&/contentdata> <&contentdata block_name = 'speed_test_result_block' author = 'mrmt32' type = 'block' >

Speed Test Result

Your router was able to download <$address> at a speed of:
<$speed> KB/sec.

<&/contentdata>