fix wrong unit in TotalBytes (#9954)
Signed-off-by: Jan N. Klug <jan.n.klug@rub.de>
This commit is contained in:
parent
b4a181a77e
commit
c489eef9e6
@ -158,6 +158,8 @@ In this case you have to use the `wifi5GHzEnable` channel for switching the gues
|
|||||||
| `wanTotalBytesReceived` | `Number:DataAmount` | x | Total Bytes Received |
|
| `wanTotalBytesReceived` | `Number:DataAmount` | x | Total Bytes Received |
|
||||||
| `wanTotalBytesSent` | `Number:DataAmount` | x | Total Bytes Sent |
|
| `wanTotalBytesSent` | `Number:DataAmount` | x | Total Bytes Sent |
|
||||||
|
|
||||||
|
**Note:** AVM Fritzbox devices use 4-byte-unsigned-integers for `wanTotalBytesReceived` and `wanTotalBytesSent`, because of that the counters are reset after around 4GB data.
|
||||||
|
|
||||||
## `PHONEBOOK` Profile
|
## `PHONEBOOK` Profile
|
||||||
|
|
||||||
The binding provides a profile for using the FritzBox phonebooks for resolving numbers to names.
|
The binding provides a profile for using the FritzBox phonebooks for resolving numbers to names.
|
||||||
|
|||||||
@ -173,13 +173,13 @@
|
|||||||
<getAction name="GetCommonLinkProperties" argument="NewLayer1UpstreamMaxBitRate"/>
|
<getAction name="GetCommonLinkProperties" argument="NewLayer1UpstreamMaxBitRate"/>
|
||||||
</channel>
|
</channel>
|
||||||
<channel name="wanTotalBytesReceived" label="Total Bytes Received">
|
<channel name="wanTotalBytesReceived" label="Total Bytes Received">
|
||||||
<item type="Number:DataAmount" unit="B" statePattern="%.3f Gio"/>
|
<item type="Number:DataAmount" unit="B" statePattern="%.3f GB"/>
|
||||||
<service deviceType="urn:dslforum-org:device:WANDevice:1"
|
<service deviceType="urn:dslforum-org:device:WANDevice:1"
|
||||||
serviceId="urn:WANCIfConfig-com:serviceId:WANCommonInterfaceConfig1"/>
|
serviceId="urn:WANCIfConfig-com:serviceId:WANCommonInterfaceConfig1"/>
|
||||||
<getAction name="GetTotalBytesReceived" argument="NewTotalBytesReceived"/>
|
<getAction name="GetTotalBytesReceived" argument="NewTotalBytesReceived"/>
|
||||||
</channel>
|
</channel>
|
||||||
<channel name="wanTotalBytesSent" label="Total Bytes Sent">
|
<channel name="wanTotalBytesSent" label="Total Bytes Sent">
|
||||||
<item type="Number:DataAmount" unit="B" statePattern="%.3f Gio"/>
|
<item type="Number:DataAmount" unit="B" statePattern="%.3f GB"/>
|
||||||
<service deviceType="urn:dslforum-org:device:WANDevice:1"
|
<service deviceType="urn:dslforum-org:device:WANDevice:1"
|
||||||
serviceId="urn:WANCIfConfig-com:serviceId:WANCommonInterfaceConfig1"/>
|
serviceId="urn:WANCIfConfig-com:serviceId:WANCommonInterfaceConfig1"/>
|
||||||
<getAction name="GetTotalBytesSent" argument="NewTotalBytesSent"/>
|
<getAction name="GetTotalBytesSent" argument="NewTotalBytesSent"/>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user