mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
webui - Corrected swapped ul/dl Max Rate (#12255)
* correct ul/dl Max rate swapped * correct ul/dl Max rate swapped
This commit is contained in:
@@ -137,9 +137,14 @@ if ($port_adsl['adslLineCoding']) {
|
||||
echo "</td><td width=150 onclick=\"location.href='" . generate_port_url($port) . "'\" >";
|
||||
echo $port_adsl['adslLineCoding'] . '/' . rewrite_adslLineType($port_adsl['adslLineType']);
|
||||
echo '<br />';
|
||||
// ATU-C is CO -> ATU-C TX is the download speed for the CPE
|
||||
// ATU-R is the CPE -> ATU-R TX is the upload speed of the CPE
|
||||
echo 'Sync:' . formatRates($port_adsl['adslAtucChanCurrTxRate']) . '/' . formatRates($port_adsl['adslAturChanCurrTxRate']);
|
||||
echo '<br />';
|
||||
echo 'Max:' . formatRates($port_adsl['adslAtucCurrAttainableRate']) . '/' . formatRates($port_adsl['adslAturCurrAttainableRate']);
|
||||
// This is the Receive Max AttainableRate, so :
|
||||
// adslAturCurrAttainableRate is DownloadMaxRate
|
||||
// adslAtucCurrAttainableRate is UploadMaxRate
|
||||
echo 'Max:' . formatRates($port_adsl['adslAturCurrAttainableRate']) . '/' . formatRates($port_adsl['adslAtucCurrAttainableRate']);
|
||||
echo "</td><td width=150 onclick=\"location.href='" . generate_port_url($port) . "'\" >";
|
||||
echo 'Atten:' . $port_adsl['adslAtucCurrAtn'] . 'dB/' . $port_adsl['adslAturCurrAtn'] . 'dB';
|
||||
echo '<br />';
|
||||
|
Reference in New Issue
Block a user