mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-23 17:27:19 +00:00
Update Fritzbox component configuration (#7385)
This commit is contained in:
parent
f96fa70272
commit
49dbc4873a
@ -13,7 +13,6 @@ ha_release: 0.27
|
|||||||
ha_iot_class: "Local Polling"
|
ha_iot_class: "Local Polling"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
The `fritzbox_callmonitor` sensor monitors the call monitor exposed by [AVM Fritz!Box](http://avm.de/produkte/fritzbox/) routers on TCP port 1012. It will assume the values `idle`, `ringing`, `dialing` or `talking` with the phone numbers involved contained in the state attributes.
|
The `fritzbox_callmonitor` sensor monitors the call monitor exposed by [AVM Fritz!Box](http://avm.de/produkte/fritzbox/) routers on TCP port 1012. It will assume the values `idle`, `ringing`, `dialing` or `talking` with the phone numbers involved contained in the state attributes.
|
||||||
It can also access the internal phone book of the router to look up the names corresponding to the phone numbers and store them in the state attributes.
|
It can also access the internal phone book of the router to look up the names corresponding to the phone numbers and store them in the state attributes.
|
||||||
|
|
||||||
@ -41,14 +40,40 @@ sensor:
|
|||||||
- platform: fritzbox_callmonitor
|
- platform: fritzbox_callmonitor
|
||||||
```
|
```
|
||||||
|
|
||||||
Configuration variables:
|
{% configuration %}
|
||||||
|
name:
|
||||||
- **host** (*Optional*): The IP address of your router, eg. 192.168.1.1. It is optional since every fritzbox is also reachable by using the IP address 169.254.1.1.
|
description: Give the sensor a friendly name for in the front-end.
|
||||||
- **port** (*Optional*): The TCP port of the call monitor. There is usually no reason to change this.
|
required: false
|
||||||
- **username** (*Optional*): Fritz!Box user's user name. This is required to use the phone book lookup feature. The user needs to have the "voice message, fax message, Fritz!App Fon and call list" permission.
|
default: Phone
|
||||||
- **password** (*Optional*): Fritz!Box user's user password. This is required to use the phone book lookup feature.
|
type: string
|
||||||
- **phonebook** (*Optional*): Numerical ID identifying the phonebook to be used. If there is just one phonebook, this is usually 0.
|
host:
|
||||||
- **prefixes** (*Optional*): In case of a local call, the phone number seen by the router might differ from the one stored in the phone book by an area code, similarly for the international prefix. To remedy this, a list of prefixes, that can be appended to the phone number in case it is not found in the phone book, can be given.
|
description: The IP address of your router, e.g., 192.168.1.1. It is optional since every fritzbox is also reachable by using the IP address 169.254.1.1.
|
||||||
|
required: false
|
||||||
|
default: 169.254.1.1
|
||||||
|
type: string
|
||||||
|
port:
|
||||||
|
description: The TCP port of the call monitor. There is usually no reason to change this.
|
||||||
|
required: false
|
||||||
|
default: 1012
|
||||||
|
type: integer
|
||||||
|
username:
|
||||||
|
description: Fritz!Box user's user name. This is required to use the phone book lookup feature. The user needs to have the "voice message, fax message, Fritz!App Fon and call list" permission.
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
password:
|
||||||
|
description: Fritz!Box user's user password. This is required to use the phone book lookup feature.
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
phonebook:
|
||||||
|
description: Numerical ID identifying the phonebook to be used. If there is just one phonebook, this is usually 0.
|
||||||
|
required: false
|
||||||
|
default: 0
|
||||||
|
type: integer
|
||||||
|
prefixes:
|
||||||
|
description: In case of a local call, the phone number seen by the router might differ from the one stored in the phone book by an area code, similarly for the international prefix. To remedy this, a list of prefixes, that can be appended to the phone number in case it is not found in the phone book, can be given.
|
||||||
|
required: false
|
||||||
|
type: list
|
||||||
|
{% endconfiguration %}
|
||||||
|
|
||||||
## {% linkable_title Examples %}
|
## {% linkable_title Examples %}
|
||||||
|
|
||||||
|
@ -28,9 +28,18 @@ sensor:
|
|||||||
- platform: fritzbox_netmonitor
|
- platform: fritzbox_netmonitor
|
||||||
```
|
```
|
||||||
|
|
||||||
Configuration variables:
|
{% configuration %}
|
||||||
|
host:
|
||||||
- **host** (*Optional*): The IP address of your router, eg. 192.168.1.1. It is optional since every fritzbox is also reachable by using the IP address 169.254.1.1.
|
description: The IP address of your router, e.g., 192.168.1.1. It is optional since every fritzbox is also reachable by using the IP address 169.254.1.1.
|
||||||
|
required: false
|
||||||
|
default: 169.254.1.1
|
||||||
|
type: string
|
||||||
|
name:
|
||||||
|
description: Give the sensor a friendly name for in the front-end.
|
||||||
|
required: false
|
||||||
|
default: fritz_netmonitor
|
||||||
|
type: string
|
||||||
|
{% endconfiguration %}
|
||||||
|
|
||||||
The following statistics will be exposed as attributes.
|
The following statistics will be exposed as attributes.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user